Speed up ConflatedBroadcastChannelNotifyStressTest (half as much events)
diff --git a/core/kotlinx-coroutines-core/test/channels/ConflatedBroadcastChannelNotifyStressTest.kt b/core/kotlinx-coroutines-core/test/channels/ConflatedBroadcastChannelNotifyStressTest.kt
index 7da81cc..b4c784a 100644
--- a/core/kotlinx-coroutines-core/test/channels/ConflatedBroadcastChannelNotifyStressTest.kt
+++ b/core/kotlinx-coroutines-core/test/channels/ConflatedBroadcastChannelNotifyStressTest.kt
@@ -14,7 +14,7 @@
 class ConflatedBroadcastChannelNotifyStressTest : TestBase() {
     val nSenders = 2
     val nReceivers = 3
-    val nEvents = 1_000_000 * stressTestMultiplier
+    val nEvents = 500_000 * stressTestMultiplier
     val timeLimit = 30_000L * stressTestMultiplier // 30 sec
 
     val broadcast = ConflatedBroadcastChannel<Int>()