Index: service/datastore/context_test.go |
diff --git a/service/datastore/context_test.go b/service/datastore/context_test.go |
index d1684c1a2517715c11114651a06da877e4294804..44190d7040c007f9721a2888f2ce66358fecba5d 100644 |
--- a/service/datastore/context_test.go |
+++ b/service/datastore/context_test.go |
@@ -14,8 +14,9 @@ import ( |
type fakeInfo struct{ info.Interface } |
-func (fakeInfo) GetNamespace() string { return "ns" } |
-func (fakeInfo) AppID() string { return "aid" } |
+func (fakeInfo) GetNamespace() string { return "ns" } |
+func (fakeInfo) AppID() string { return "aid" } |
+func (fakeInfo) FullyQualifiedAppID() string { return "s~aid" } |
type fakeService struct{ RawInterface } |
@@ -38,7 +39,7 @@ func TestServices(t *testing.T) { |
c = SetRaw(info.Set(c, fakeInfo{}), fakeService{}) |
Convey("lets you pull them back out", func() { |
- So(GetRaw(c), ShouldResemble, &checkFilter{fakeService{}, "aid", "ns"}) |
+ So(GetRaw(c), ShouldResemble, &checkFilter{fakeService{}, "s~aid", "ns"}) |
}) |
Convey("and lets you add filters", func() { |