| Index: impl/memory/datastore_test.go
|
| diff --git a/impl/memory/datastore_test.go b/impl/memory/datastore_test.go
|
| index 3b9f91e212dfc2f75d09512216539fc0785e295e..c78d9c3700e1538c257a69c46a0c85fbfebfbc7e 100644
|
| --- a/impl/memory/datastore_test.go
|
| +++ b/impl/memory/datastore_test.go
|
| @@ -99,7 +99,7 @@ func TestDatastoreSingleReadWriter(t *testing.T) {
|
| for i := range keys {
|
| keys[i] = ds.MakeKey(aid, "noexist", "Kind", i+1)
|
| }
|
| - So(ds.DeleteMulti(keys), ShouldBeNil)
|
| + So(ds.DeleteMulti(keys...), ShouldBeNil)
|
| count := 0
|
| So(ds.Raw().DeleteMulti(keys, func(err error) error {
|
| count++
|
| @@ -126,7 +126,7 @@ func TestDatastoreSingleReadWriter(t *testing.T) {
|
| }
|
|
|
| Convey("ensure that group versions persist across deletes", func() {
|
| - So(ds.DeleteMulti(append(keys, k)), ShouldBeNil)
|
| + So(ds.DeleteMulti(append(keys, k)...), ShouldBeNil)
|
|
|
| ds.Testable().CatchupIndexes()
|
|
|
|
|