etcdserver/v2store: remove unused testing.T parameter

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-05-09 13:42:24 -07:00
parent 7c5cf7013f
commit 26e46702a2

View File

@ -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...)}
}