From 2bbae6e6ef0f7a2504b612d6766a2688036a0147 Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Mon, 2 May 2022 12:50:35 +0200 Subject: [PATCH] Increase timeout, as it seems to be hit on CI (#5427) occasionally. If this keeps being a problem, we might also increase the channel size: https://github.com/paritytech/polkadot/blob/49f7e5cce45c44b6fcbad3c612b92657eb7a52df/node/subsystem-test-helpers/src/lib.rs#L239 --- polkadot/node/network/approval-distribution/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/network/approval-distribution/src/tests.rs b/polkadot/node/network/approval-distribution/src/tests.rs index 8d1ed874c0..b1953eca81 100644 --- a/polkadot/node/network/approval-distribution/src/tests.rs +++ b/polkadot/node/network/approval-distribution/src/tests.rs @@ -75,7 +75,7 @@ fn test_harness>( state } -const TIMEOUT: Duration = Duration::from_millis(100); +const TIMEOUT: Duration = Duration::from_millis(200); async fn overseer_send(overseer: &mut VirtualOverseer, msg: ApprovalDistributionMessage) { gum::trace!(msg = ?msg, "Sending message");