From c51b532a48b0672bef251c6087bbc5a127d1b89f Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Wed, 15 Jan 2020 09:15:09 +0100 Subject: [PATCH] eth: increase timeout to fix a spurious travis test failure --- eth/handler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/handler_test.go b/eth/handler_test.go index 893bfffa42..354cbc068c 100644 --- a/eth/handler_test.go +++ b/eth/handler_test.go @@ -608,7 +608,7 @@ func testBroadcastBlock(t *testing.T, totalPeers, broadcastExpected int) { } }(peer) } - timeout := time.After(time.Second) + timeout := time.After(2 * time.Second) var receivedCount int outer: for {