| Index: impl/memory/datastore_query_execution_test.go
|
| diff --git a/impl/memory/datastore_query_execution_test.go b/impl/memory/datastore_query_execution_test.go
|
| index 0f83959d90b42a99baad5a4d54fb1cb766ac5c05..5d43343d3515df2cc3a1baca0773f9c43c2ea13c 100644
|
| --- a/impl/memory/datastore_query_execution_test.go
|
| +++ b/impl/memory/datastore_query_execution_test.go
|
| @@ -546,7 +546,7 @@ func TestQueryExecution(t *testing.T) {
|
| So(data.GetAll(expect.q, &rslt), ShouldBeNil)
|
| So(len(rslt), ShouldEqual, len(expect.get))
|
| for i, r := range rslt {
|
| - So(r, ShouldResembleV, expect.get[i])
|
| + So(r, ShouldResemble, expect.get[i])
|
| }
|
| return nil
|
| }, &ds.TransactionOptions{XG: true})
|
|
|