good morning!!!!

Skip to content
Snippets Groups Projects
Commit 45140488 authored by Martin Holst Swende's avatar Martin Holst Swende Committed by Igor Mandrigin
Browse files

eth: increase timeout in TestBroadcastBlock (#21299)

parent be6417ea
No related branches found
No related tags found
No related merge requests found
......@@ -600,13 +600,16 @@ func testBroadcastBlock(t *testing.T, totalPeers, broadcastExpected int) {
select {
case <-doneCh:
received++
case <-time.After(time.Second):
if received > broadcastExpected {
// We can bail early here
t.Errorf("broadcast count mismatch: have %d > want %d", received, broadcastExpected)
return
}
case <-time.After(2 * time.Second):
if received != broadcastExpected {
t.Errorf("broadcast count mismatch: have %d, want %d", received, broadcastExpected)
}
return
case err = <-errCh:
t.Fatalf("broadcast failed: %v", err)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment