From 66fec88a96a3cb1cce776653bd5351c02833cc40 Mon Sep 17 00:00:00 2001 From: William Wen Date: Fri, 27 Oct 2023 19:26:44 +0800 Subject: [PATCH] allow no progress --- src/tests/simulation/tests/integration_tests/sink/scale.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/tests/simulation/tests/integration_tests/sink/scale.rs b/src/tests/simulation/tests/integration_tests/sink/scale.rs index c526c9378892d..259678636d535 100644 --- a/src/tests/simulation/tests/integration_tests/sink/scale.rs +++ b/src/tests/simulation/tests/integration_tests/sink/scale.rs @@ -47,12 +47,6 @@ async fn scale_and_check( if thread_rng().gen_bool(0.5) { sleep(Duration::from_secs(10)).await; let before_kill_count = test_sink.store.id_count(); - assert!( - before_kill_count > after_count, - "no progress after scale {} {}", - before_kill_count, - after_count - ); cluster.kill_node(&KillOpts::ALL).await; sleep(Duration::from_secs(10)).await; }