| Index: impl/memory/info_test.go
|
| diff --git a/impl/memory/info_test.go b/impl/memory/info_test.go
|
| index 200f43764962e5d6d044fb5658c346ba61d3bdd5..107c17b247e6721fbfeaaa1d3010fb8315a1e406 100644
|
| --- a/impl/memory/info_test.go
|
| +++ b/impl/memory/info_test.go
|
| @@ -27,13 +27,11 @@ func TestMustNamespace(t *testing.T) {
|
| })
|
|
|
| Convey("Testable interface works", t, func() {
|
| - c := Use(context.Background())
|
| - c = useGID(c, func(mod *globalInfoData) {
|
| - mod.appid = "app-id"
|
| - })
|
| + c := UseWithAppID(context.Background(), "dev~app-id")
|
|
|
| // Default value.
|
| So(info.Get(c).AppID(), ShouldEqual, "app-id")
|
| + So(info.Get(c).FullyQualifiedAppID(), ShouldEqual, "dev~app-id")
|
| So(info.Get(c).RequestID(), ShouldEqual, "test-request-id")
|
|
|
| // Setting to "override" applies to initial context.
|
|
|