From 61f8657830feb956852187fbe113d220a1f8eb1f Mon Sep 17 00:00:00 2001 From: Sergey Timoshin Date: Sun, 22 Dec 2024 14:05:02 +0000 Subject: [PATCH] test: increase wait time in LightValidatorConfig for improved stability --- forester/tests/e2e_test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/forester/tests/e2e_test.rs b/forester/tests/e2e_test.rs index f336f5aca..b344c8d01 100644 --- a/forester/tests/e2e_test.rs +++ b/forester/tests/e2e_test.rs @@ -37,7 +37,7 @@ use test_utils::*; async fn test_epoch_monitor_with_test_indexer_and_1_forester() { init(Some(LightValidatorConfig { enable_indexer: false, - wait_time: 30, + wait_time: 40, prover_config: Some(ProverConfig { run_mode: Some(ProverMode::ForesterTest), circuits: vec![], @@ -271,7 +271,7 @@ pub async fn assert_queue_len( async fn test_epoch_monitor_with_2_foresters() { init(Some(LightValidatorConfig { enable_indexer: false, - wait_time: 30, + wait_time: 40, prover_config: Some(ProverConfig { run_mode: Some(ProverMode::ForesterTest), circuits: vec![], @@ -611,7 +611,7 @@ async fn test_epoch_double_registration() { println!("*****************************************************************"); init(Some(LightValidatorConfig { enable_indexer: false, - wait_time: 30, + wait_time: 40, prover_config: Some(ProverConfig { run_mode: Some(ProverMode::ForesterTest), circuits: vec![],