Skip to content

Commit 9d31ffc

Browse files
committed
Speed up ConflatedBroadcastChannelNotifyStressTest (half as much events)
1 parent 7bd983f commit 9d31ffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/kotlinx-coroutines-core/test/channels/ConflatedBroadcastChannelNotifyStressTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import kotlin.coroutines.experimental.*
1414
class ConflatedBroadcastChannelNotifyStressTest : TestBase() {
1515
val nSenders = 2
1616
val nReceivers = 3
17-
val nEvents = 1_000_000 * stressTestMultiplier
17+
val nEvents = 500_000 * stressTestMultiplier
1818
val timeLimit = 30_000L * stressTestMultiplier // 30 sec
1919

2020
val broadcast = ConflatedBroadcastChannel<Int>()

0 commit comments

Comments
 (0)