| 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 }
 | 
|  
 | 
| 
 |