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
This commit is contained in:
Robert Klotzner
2022-05-02 12:50:35 +02:00
committed by GitHub
parent 6bfa097142
commit 2bbae6e6ef
@@ -75,7 +75,7 @@ fn test_harness<T: Future<Output = VirtualOverseer>>(
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");