From e8abebddc3c5f2a8c031d047ace99a65a35cd34f Mon Sep 17 00:00:00 2001 From: imabdulbasit Date: Tue, 17 Dec 2024 13:51:05 +0500 Subject: [PATCH] increase MAX_TXNS_NOT_INCREMENTING to 5 --- tests/smoke.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/smoke.rs b/tests/smoke.rs index 941eac6dd..d154fc03d 100644 --- a/tests/smoke.rs +++ b/tests/smoke.rs @@ -6,7 +6,7 @@ use std::time::Instant; /// We allow for no change in state across this many consecutive iterations. const MAX_STATE_NOT_INCREMENTING: u8 = 1; /// We allow for no new transactions across this many consecutive iterations. -const MAX_TXNS_NOT_INCREMENTING: u8 = 3; +const MAX_TXNS_NOT_INCREMENTING: u8 = 5; #[tokio::test(flavor = "multi_thread")] async fn test_smoke() -> Result<()> {