File tree 2 files changed +2
-2
lines changed
kotlinx-coroutines-rx2/test
kotlinx-coroutines-rx3/test
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class ObservableMultiTest : TestBase() {
51
51
@Test
52
52
fun testConcurrentStressOnSend () {
53
53
val n = 10_000 * stressTestMultiplier
54
- val observable = rxObservable {
54
+ val observable = rxObservable< Int > {
55
55
newCoroutineContext(coroutineContext)
56
56
// concurrent emitters (many coroutines)
57
57
val jobs = List (n) {
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class ObservableMultiTest : TestBase() {
51
51
@Test
52
52
fun testConcurrentStressOnSend () {
53
53
val n = 10_000 * stressTestMultiplier
54
- val observable = rxObservable {
54
+ val observable = rxObservable< Int > {
55
55
newCoroutineContext(coroutineContext)
56
56
// concurrent emitters (many coroutines)
57
57
val jobs = List (n) {
You can’t perform that action at this time.
0 commit comments