diff --git a/kotlinx-coroutines-core/jvm/test/flow/StateFlowStressTest.kt b/kotlinx-coroutines-core/jvm/test/flow/StateFlowStressTest.kt index 3739aef978..712a83dd87 100644 --- a/kotlinx-coroutines-core/jvm/test/flow/StateFlowStressTest.kt +++ b/kotlinx-coroutines-core/jvm/test/flow/StateFlowStressTest.kt @@ -63,10 +63,6 @@ class StateFlowStressTest : TestBase() { } emitters.cancelAndJoin() collectors.cancelAndJoin() - // make sure nothing hanged up - require(collected.all { c -> - c.withIndex().all { (emitter, current) -> current > emitted[emitter] / 2 } - }) } @Test