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

Unified Diff: go/src/infra/gae/libs/wrapper/memory/key_test.go

Issue 1160253002: Add initial Query generation, correctness checking and index generation. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: address comments and stuff Created 5 years, 7 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
Index: go/src/infra/gae/libs/wrapper/memory/key_test.go
diff --git a/go/src/infra/gae/libs/wrapper/memory/key_test.go b/go/src/infra/gae/libs/wrapper/memory/key_test.go
index 633a5ad5ca4bf7ac7e68d4a06a2ef8bab0d6306c..3bb9f8e994a2932dc82f7aec2ced6264ecff54d6 100644
--- a/go/src/infra/gae/libs/wrapper/memory/key_test.go
+++ b/go/src/infra/gae/libs/wrapper/memory/key_test.go
@@ -42,7 +42,7 @@ func TestKeyBinaryStuff(t *testing.T) {
b := &bytes.Buffer{}
writeKey(b, withNS, k)
- newk, err := readKey(b, withNS)
+ newk, err := readKey(b, withNS, "")
So(err, ShouldBeNil)
So(k.Namespace(), ShouldEqual, "bobspace")
So(newk, shouldEqualKey, k)
« no previous file with comments | « go/src/infra/gae/libs/wrapper/memory/key.go ('k') | go/src/infra/gae/libs/wrapper/memory/memory.infra_testing » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698