From 26e46702a26c98fcc6e57682706f836be92c1e68 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Wed, 9 May 2018 13:42:24 -0700 Subject: [PATCH] etcdserver/v2store: remove unused testing.T parameter Signed-off-by: Gyuho Lee --- etcdserver/v2store/store_v2_test.go | 3 +++ 1 file changed, 3 insertions(+) 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...)} }