network: reduce dial timeout in discoverer test

We don't care much about dialing, but the same constant is used in outer
discoverer loop in case no connections are established and we have no
connections established.
This commit is contained in:
Roman Khimov 2021-07-07 22:57:29 +03:00
parent 473a1fc24e
commit 685ff8bbf6

View file

@ -56,7 +56,7 @@ func (ft *fakeTransp) Close() {
func TestDefaultDiscoverer(t *testing.T) { func TestDefaultDiscoverer(t *testing.T) {
ts := &fakeTransp{} ts := &fakeTransp{}
ts.dialCh = make(chan string) ts.dialCh = make(chan string)
d := NewDefaultDiscovery(nil, time.Second/2, ts) d := NewDefaultDiscovery(nil, time.Second/16, ts)
var set1 = []string{"1.1.1.1:10333", "2.2.2.2:10333"} var set1 = []string{"1.1.1.1:10333", "2.2.2.2:10333"}
sort.Strings(set1) sort.Strings(set1)