From b7f011f777bd9fa396a607e6228f43e3be5f5437 Mon Sep 17 00:00:00 2001 From: chrislu Date: Mon, 15 May 2023 17:46:56 -0700 Subject: [PATCH] fix test --- weed/filer/etcd/etcd_store_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/filer/etcd/etcd_store_test.go b/weed/filer/etcd/etcd_store_test.go index 03b676982..31e451e00 100644 --- a/weed/filer/etcd/etcd_store_test.go +++ b/weed/filer/etcd/etcd_store_test.go @@ -10,7 +10,7 @@ func TestStore(t *testing.T) { // to set up local env if false { store := &EtcdStore{} - store.initialize("localhost:2379", "3s") + store.initialize("localhost:2379", "", "", "3s") store_test.TestFilerStore(t, store) } }