From 5b66a5340b39c2d0c4a2f919d51182ca473f27fd Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Fri, 25 Aug 2023 12:33:00 +0200 Subject: [PATCH] Bump test timeout Signed-off-by: Oliver Tale-Yazdi --- polkadot/node/subsystem-test-helpers/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/subsystem-test-helpers/src/lib.rs b/polkadot/node/subsystem-test-helpers/src/lib.rs index fb908278aa7d..339b99a4b5ac 100644 --- a/polkadot/node/subsystem-test-helpers/src/lib.rs +++ b/polkadot/node/subsystem-test-helpers/src/lib.rs @@ -332,7 +332,7 @@ pub fn subsystem_test_harness( futures::executor::block_on(async move { future::join(overseer, test) - .timeout(Duration::from_secs(5)) + .timeout(Duration::from_secs(10)) .await .expect("test timed out instead of completing") });