fix local backend test

The local backend can't define a StateOut path if we want to test
writing multiple named state files. Use a default local backend.
This commit is contained in:
James Bardin 2017-03-23 11:14:13 -04:00
parent 49b9a6ad92
commit 7b8e1aff3d
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ func TestLocal_impl(t *testing.T) {
}
func TestLocal_backend(t *testing.T) {
b := TestLocal(t)
defer testTmpDir(t)()
b := &Local{}
backend.TestBackend(t, b, b)
}