From c34e8cd01114b2fc908629ba26acb421511b5040 Mon Sep 17 00:00:00 2001 From: FujiApple Date: Sun, 14 Jan 2024 14:41:47 +0800 Subject: [PATCH] test: increase simulator test max retries to 5 --- tests/sim/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sim/tests.rs b/tests/sim/tests.rs index 8e2eec664..67bd710e3 100644 --- a/tests/sim/tests.rs +++ b/tests/sim/tests.rs @@ -9,7 +9,7 @@ use tracing::{error, info}; use tracing_subscriber::fmt::format::FmtSpan; /// The maximum number of attempts for each test. -const MAX_ATTEMPTS: usize = 3; +const MAX_ATTEMPTS: usize = 5; static RUNTIME: OnceLock>> = OnceLock::new();