Skip to content

Commit 9c516a0

Browse files
committed
Fix compilation after Kotlin update
1 parent 9d0f7a0 commit 9c516a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reactive/kotlinx-coroutines-reactive/test/PublisherMultiTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class PublisherMultiTest : TestBase() {
3333
@Test
3434
fun testConcurrentStressOnSend() = runBlocking {
3535
val n = 10_000 * stressTestMultiplier
36-
val observable = publish {
36+
val observable = publish<Int> {
3737
// concurrent emitters (many coroutines)
3838
val jobs = List(n) {
3939
// launch

0 commit comments

Comments
 (0)