From 36f3c83b6c10ae88467932ccd178c98c5accee0a Mon Sep 17 00:00:00 2001 From: Shanicky Chen Date: Mon, 22 Jul 2024 13:25:47 +0800 Subject: [PATCH] Update assert in sink recovery test to allow equal counts --- src/tests/simulation/tests/integration_tests/sink/recovery.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/simulation/tests/integration_tests/sink/recovery.rs b/src/tests/simulation/tests/integration_tests/sink/recovery.rs index 2de83b424ad42..6b4f71d7d508e 100644 --- a/src/tests/simulation/tests/integration_tests/sink/recovery.rs +++ b/src/tests/simulation/tests/integration_tests/sink/recovery.rs @@ -40,7 +40,7 @@ async fn kill_and_check( break; } assert!( - curr_count > prev_count, + curr_count >= prev_count, "not make progress between kill. Prev count {}, curr count {}, i {}", prev_count, curr_count,