From ea1dcb82fdc2e01aa990f39bb96008caee80a129 Mon Sep 17 00:00:00 2001 From: Youngjoon Lee Date: Tue, 31 Oct 2023 20:32:07 +0900 Subject: [PATCH] Increase the timeout of happy integration tests (#494) --- tests/src/tests/happy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/tests/happy.rs b/tests/src/tests/happy.rs index c9fa64e8..c934db1c 100644 --- a/tests/src/tests/happy.rs +++ b/tests/src/tests/happy.rs @@ -14,7 +14,7 @@ struct Info { } async fn happy_test(nodes: &[NomosNode]) { - let timeout = std::time::Duration::from_secs(20); + let timeout = std::time::Duration::from_secs(30); let timeout = tokio::time::sleep(timeout); tokio::select! { _ = timeout => panic!("timed out waiting for nodes to reach view {}", TARGET_VIEW),