From 8ff064c8d59b8e5d2e7304f9c3c99799a329f8d0 Mon Sep 17 00:00:00 2001 From: Rob Dawson Date: Mon, 18 Mar 2019 20:23:04 +1000 Subject: [PATCH] Bump up timeout on test because it is failing too often in CI. --- .../ethereum/eth/sync/worldstate/WorldStateDownloaderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/eth/src/test/java/tech/pegasys/pantheon/ethereum/eth/sync/worldstate/WorldStateDownloaderTest.java b/ethereum/eth/src/test/java/tech/pegasys/pantheon/ethereum/eth/sync/worldstate/WorldStateDownloaderTest.java index c6dc4ae033..4aaedef64e 100644 --- a/ethereum/eth/src/test/java/tech/pegasys/pantheon/ethereum/eth/sync/worldstate/WorldStateDownloaderTest.java +++ b/ethereum/eth/src/test/java/tech/pegasys/pantheon/ethereum/eth/sync/worldstate/WorldStateDownloaderTest.java @@ -92,7 +92,7 @@ public class WorldStateDownloaderTest { - @Rule public Timeout globalTimeout = Timeout.seconds(60); // 1 minute max per test + @Rule public Timeout globalTimeout = Timeout.seconds(120); // 1 minute max per test private static final Hash EMPTY_TRIE_ROOT = Hash.wrap(MerklePatriciaTrie.EMPTY_TRIE_NODE_HASH);