diff --git a/etcdserver/v2store/store_v2_test.go b/etcdserver/v2store/store_v2_test.go index 474b4d2ea..39e0745ff 100644 --- a/etcdserver/v2store/store_v2_test.go +++ b/etcdserver/v2store/store_v2_test.go @@ -30,6 +30,9 @@ type v2TestStore struct { func (s *v2TestStore) Close() {} func newTestStore(t *testing.T, ns ...string) StoreCloser { + if len(ns) == 0 { + t.Logf("new v2 store with no namespace") + } return &v2TestStore{v2store.New(ns...)} }