| Index: impl/memory/info_test.go
|
| diff --git a/impl/memory/info_test.go b/impl/memory/info_test.go
|
| index 3bfdca2630c2541580f70d80b507c60ac1c52eff..e0481572940af69329420f091114891f335c5e49 100644
|
| --- a/impl/memory/info_test.go
|
| +++ b/impl/memory/info_test.go
|
| @@ -21,6 +21,9 @@ func TestMustNamespace(t *testing.T) {
|
| So(info.AppID(c), ShouldEqual, "app-id")
|
| So(info.FullyQualifiedAppID(c), ShouldEqual, "dev~app-id")
|
| So(info.RequestID(c), ShouldEqual, "test-request-id")
|
| + sa, err := info.ServiceAccount(c)
|
| + So(err, ShouldBeNil)
|
| + So(sa, ShouldEqual, "user@example.com")
|
|
|
| // Setting to "override" applies to initial context.
|
| c = info.GetTestable(c).SetRequestID("override")
|
|
|