diff --git a/pkg/util/fake_etcd_client.go b/pkg/util/fake_etcd_client.go index c7f3160f06a..f21a5c17e1e 100644 --- a/pkg/util/fake_etcd_client.go +++ b/pkg/util/fake_etcd_client.go @@ -51,9 +51,8 @@ func MakeFakeEtcdClient(t *testing.T) *FakeEtcdClient { ret := &FakeEtcdClient{ t: t, Data: map[string]EtcdResponseWithError{}, - // watchChanReady: make(chan bool), } - // The channels are not ready yet + // Watch() method has not been called. ret.condWatchCompleted = sync.NewCond(&ret.condLock) return ret }