mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 19:46:39 +00:00
eth: increase timeout in TestBroadcastBlock (#18064)
This commit is contained in:
parent
76f5f662cc
commit
b24ef5e05d
1 changed files with 2 additions and 2 deletions
|
|
@ -585,7 +585,7 @@ func testBroadcastBlock(t *testing.T, totalPeers, broadcastExpected int) {
|
||||||
}
|
}
|
||||||
}(peer)
|
}(peer)
|
||||||
}
|
}
|
||||||
timeoutCh := time.NewTimer(time.Millisecond * 100).C
|
timeout := time.After(300 * time.Millisecond)
|
||||||
var receivedCount int
|
var receivedCount int
|
||||||
outer:
|
outer:
|
||||||
for {
|
for {
|
||||||
|
|
@ -597,7 +597,7 @@ outer:
|
||||||
if receivedCount == totalPeers {
|
if receivedCount == totalPeers {
|
||||||
break outer
|
break outer
|
||||||
}
|
}
|
||||||
case <-timeoutCh:
|
case <-timeout:
|
||||||
break outer
|
break outer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue