Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: service/datastore/raw_interface_test.go

Issue 1355783002: Refactor keys and queries in datastore service and implementation. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: appease errcheck Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « service/datastore/raw_interface.go ('k') | service/datastore/reflect.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/datastore/raw_interface_test.go
diff --git a/service/datastore/raw_interface_test.go b/service/datastore/raw_interface_test.go
index 8bfac8a42693e8945cd26acf2d69d61e4f7638d1..475d16af72ea34f71b8cd5eb6e8db19fe29b5c42 100644
--- a/service/datastore/raw_interface_test.go
+++ b/service/datastore/raw_interface_test.go
@@ -31,8 +31,8 @@ func TestMultiMetaGetter(t *testing.T) {
Convey("stuff", func() {
pmaps := []PropertyMap{{}, nil, {}}
- pmaps[0].SetMeta("hi", "thing")
- pmaps[2].SetMeta("key", 100)
+ So(pmaps[0].SetMeta("hi", "thing"), ShouldBeNil)
+ So(pmaps[2].SetMeta("key", 100), ShouldBeNil)
mmg := NewMultiMetaGetter(pmaps)
// oob is OK
« no previous file with comments | « service/datastore/raw_interface.go ('k') | service/datastore/reflect.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698