From cc656345b5863be5346cbda124cf9ec485e3531b Mon Sep 17 00:00:00 2001 From: Antonio Morrone Date: Fri, 15 Sep 2023 16:28:30 +0200 Subject: [PATCH] test: increate prover timeout --- core/bin/prover/tests/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bin/prover/tests/tests.rs b/core/bin/prover/tests/tests.rs index d6f47ce2f..b715615bf 100644 --- a/core/bin/prover/tests/tests.rs +++ b/core/bin/prover/tests/tests.rs @@ -205,7 +205,7 @@ async fn test_receiving_heartbeats() { ) .fuse(); // We need to set an higher timeout value to avoid the test to fail - let timeout = tokio::time::sleep(Duration::from_secs(30)).fuse(); + let timeout = tokio::time::sleep(Duration::from_secs(60)).fuse(); pin_mut!(prover_work_cycle, timeout);