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

Unified Diff: service/datastore/context_test.go

Issue 1916463004: impl/memory: Disallow empty namespace. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Rbase. Created 4 years, 8 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/context.go ('k') | service/datastore/datastore_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/datastore/context_test.go
diff --git a/service/datastore/context_test.go b/service/datastore/context_test.go
index 059686f425048d2dff4838d95c3cecdaff5fbae4..32ac04c3b5a7932f2a286a71fbad9c9bca79a22a 100644
--- a/service/datastore/context_test.go
+++ b/service/datastore/context_test.go
@@ -14,9 +14,9 @@ import (
type fakeInfo struct{ info.Interface }
-func (fakeInfo) GetNamespace() string { return "ns" }
-func (fakeInfo) AppID() string { return "aid" }
-func (fakeInfo) FullyQualifiedAppID() string { return "s~aid" }
+func (fakeInfo) GetNamespace() (string, bool) { return "ns", true }
+func (fakeInfo) AppID() string { return "aid" }
+func (fakeInfo) FullyQualifiedAppID() string { return "s~aid" }
type fakeService struct{ RawInterface }
« no previous file with comments | « service/datastore/context.go ('k') | service/datastore/datastore_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698