Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
qwwdfsad committed Oct 6, 2021
1 parent c806d9e commit 4095e6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -51,7 +51,7 @@ class ObservableMultiTest : TestBase() {
@Test
fun testConcurrentStressOnSend() {
val n = 10_000 * stressTestMultiplier
val observable = rxObservable {
val observable = rxObservable<Int> {
newCoroutineContext(coroutineContext)
// concurrent emitters (many coroutines)
val jobs = List(n) {
Expand Down
Expand Up @@ -51,7 +51,7 @@ class ObservableMultiTest : TestBase() {
@Test
fun testConcurrentStressOnSend() {
val n = 10_000 * stressTestMultiplier
val observable = rxObservable {
val observable = rxObservable<Int> {
newCoroutineContext(coroutineContext)
// concurrent emitters (many coroutines)
val jobs = List(n) {
Expand Down

0 comments on commit 4095e6d

Please sign in to comment.