Skip to content

Commit 4095e6d

Browse files
committed
Fix compilation
1 parent c806d9e commit 4095e6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reactive/kotlinx-coroutines-rx2/test/ObservableMultiTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ObservableMultiTest : TestBase() {
5151
@Test
5252
fun testConcurrentStressOnSend() {
5353
val n = 10_000 * stressTestMultiplier
54-
val observable = rxObservable {
54+
val observable = rxObservable<Int> {
5555
newCoroutineContext(coroutineContext)
5656
// concurrent emitters (many coroutines)
5757
val jobs = List(n) {

reactive/kotlinx-coroutines-rx3/test/ObservableMultiTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ObservableMultiTest : TestBase() {
5151
@Test
5252
fun testConcurrentStressOnSend() {
5353
val n = 10_000 * stressTestMultiplier
54-
val observable = rxObservable {
54+
val observable = rxObservable<Int> {
5555
newCoroutineContext(coroutineContext)
5656
// concurrent emitters (many coroutines)
5757
val jobs = List(n) {

0 commit comments

Comments
 (0)