| Index: impl/memory/datastore_query_execution_test.go | 
| diff --git a/impl/memory/datastore_query_execution_test.go b/impl/memory/datastore_query_execution_test.go | 
| index 41f4a898b2356b8466cb60cbffd3699ff14d83cc..941e845ebd2bb0aedeb2806e96942898f84bb9f1 100644 | 
| --- a/impl/memory/datastore_query_execution_test.go | 
| +++ b/impl/memory/datastore_query_execution_test.go | 
| @@ -494,7 +494,9 @@ func TestQueryExecution(t *testing.T) { | 
| } | 
|  | 
| So(info.Get(c).FullyQualifiedAppID(), ShouldEqual, "dev~app") | 
| -		So(info.Get(c).GetNamespace(), ShouldEqual, "ns") | 
| +		ns, has := info.Get(c).GetNamespace() | 
| +		So(ns, ShouldEqual, "ns") | 
| +		So(has, ShouldBeTrue) | 
|  | 
| data := ds.Get(c) | 
| testing := data.Testable() | 
|  |