Skip to content

Commit 1dfc26c

Browse files
committed
toObservable -> asObservable
1 parent 228d084 commit 1dfc26c

File tree

2 files changed

+2
-2
lines changed
  • reactive
    • kotlinx-coroutines-rx1/src/test/kotlin/kotlinx/coroutines/experimental/rx1
    • kotlinx-coroutines-rx2/src/test/kotlin/kotlinx/coroutines/experimental/rx2

2 files changed

+2
-2
lines changed

reactive/kotlinx-coroutines-rx1/src/test/kotlin/kotlinx/coroutines/experimental/rx1/IntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class IntegrationTest(
8787
}
8888
checkNumbers(n, observable)
8989
val channel = observable.open()
90-
checkNumbers(n, channel.toObservable(ctx(context)))
90+
checkNumbers(n, channel.asObservable(ctx(context)))
9191
channel.close()
9292
}
9393

reactive/kotlinx-coroutines-rx2/src/test/kotlin/kotlinx/coroutines/experimental/rx2/IntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class IntegrationTest(
8686
}
8787
checkNumbers(n, observable)
8888
val channel = observable.open()
89-
checkNumbers(n, channel.toObservable(ctx(context)))
89+
checkNumbers(n, channel.asObservable(ctx(context)))
9090
channel.close()
9191
}
9292

0 commit comments

Comments
 (0)