From a58b5a947f79ecd9061e2531befa7d81c43e47d6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bastian=20K=C3=B6cher?= <bkchr@users.noreply.github.com>
Date: Thu, 30 Sep 2021 14:58:28 +0200
Subject: [PATCH] Fix basic authorship flaky test (#9906)

The test is flaky because sometimes we hit the 9 seconds deadline when
the CI was probably on high load. To "solve" this we just use an huge
deadline that should never be triggered. The deadline isn't required anyway.
---
 substrate/client/basic-authorship/src/basic_authorship.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/substrate/client/basic-authorship/src/basic_authorship.rs b/substrate/client/basic-authorship/src/basic_authorship.rs
index 144a3ab6850..e38bb11688f 100644
--- a/substrate/client/basic-authorship/src/basic_authorship.rs
+++ b/substrate/client/basic-authorship/src/basic_authorship.rs
@@ -718,7 +718,7 @@ mod tests {
 			);
 
 			// when
-			let deadline = time::Duration::from_secs(9);
+			let deadline = time::Duration::from_secs(900);
 			let block =
 				block_on(proposer.propose(Default::default(), Default::default(), deadline, None))
 					.map(|r| r.block)
-- 
GitLab