Index: impl/prod/everything_test.go |
diff --git a/impl/prod/everything_test.go b/impl/prod/everything_test.go |
index 577c3f46c14c4e7cead3c754d88c68bac9f25d31..bf0924c1552cc99b39da5c5239108a1bb20ae8ac 100644 |
--- a/impl/prod/everything_test.go |
+++ b/impl/prod/everything_test.go |
@@ -13,6 +13,7 @@ import ( |
"github.com/luci/gae/service/blobstore" |
"github.com/luci/gae/service/datastore" |
"github.com/luci/gae/service/info" |
+ "github.com/luci/luci-go/common/logging" |
. "github.com/smartystreets/goconvey/convey" |
"golang.org/x/net/context" |
"google.golang.org/appengine/aetest" |
@@ -53,6 +54,10 @@ func TestBasicDatastore(t *testing.T) { |
ds := datastore.Get(ctx) |
inf := info.Get(ctx) |
+ // You have to visually confirm that this actually happens in the stdout |
+ // of the test... yeah I know. |
+ logging.Infof(ctx, "I am a banana") |
+ |
Convey("Can probe/change Namespace", func() { |
So(inf.GetNamespace(), ShouldEqual, "") |
ctx, err = inf.Namespace("wat") |