Index: impl/prod/everything_test.go |
diff --git a/impl/prod/everything_test.go b/impl/prod/everything_test.go |
index bf0924c1552cc99b39da5c5239108a1bb20ae8ac..9f2eb2fd1fe887f517b92069f12e400566cef698 100644 |
--- a/impl/prod/everything_test.go |
+++ b/impl/prod/everything_test.go |
@@ -125,9 +125,8 @@ func TestBasicDatastore(t *testing.T) { |
Convey("Can query", func() { |
q := datastore.NewQuery("TestStruct") |
- ds.Run(q, func(ts *TestStruct, _ datastore.CursorCB) bool { |
+ ds.Run(q, func(ts *TestStruct) { |
So(*ts, ShouldResemble, orig) |
- return true |
}) |
count, err := ds.Count(q) |
So(err, ShouldBeNil) |