Skip to content

Commit 5812ed6

Browse files
committed
sip
2 parents 621f1f1 + d379efd commit 5812ed6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

core-kotlin-modules/core-kotlin-concurrency-3/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,12 @@
3030
<groupId>io.reactivex.rxjava3</groupId>
3131
<artifactId>rxkotlin</artifactId>
3232
<version>3.0.1</version>
33-
<scope>runtime</scope>
3433
</dependency>
3534

3635
<dependency>
3736
<groupId>org.jetbrains.kotlinx</groupId>
3837
<artifactId>kotlinx-coroutines-rx3</artifactId>
3938
<version>1.8.1</version>
40-
<scope>runtime</scope>
4139
</dependency>
4240
</dependencies>
4341
</project>

core-kotlin-modules/core-kotlin-concurrency-3/src/test/java/com/baeldung/singleRxJavaToCoroutineDeferred/SingleRxJavaToCoroutineDeferredUnitTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class SingleRxJavaToCoroutineDeferredUnitTest {
7272

7373
// using CompletableDeferred & subscribe
7474
@Test
75-
fun `using CompletableDeferred & subscribe`() = runBlocking {
75+
fun `using CompletableDeferred and subscribe`() = runBlocking {
7676
val deferred = CompletableDeferred<List<Product>>()
7777
getFilteredProducts().subscribe({ products ->
7878
deferred.complete(products)

0 commit comments

Comments
 (0)