backend/local: call new test API correctly

This commit is contained in:
Mitchell Hashimoto 2017-03-15 08:46:58 -07:00
parent 1ca0352e5f
commit 2969b29d9b
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
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) {
backend.TestBackend(t, TestLocal(t))
b := TestLocal(t)
backend.TestBackend(t, b, b)
}
func checkState(t *testing.T, path, expected string) {