Skip to content

Commit 621f1f1

Browse files
committed
sip
1 parent 6a041b5 commit 621f1f1

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,4 @@
4040
<scope>runtime</scope>
4141
</dependency>
4242
</dependencies>
43-
<repositories>
44-
<repository>
45-
<id>maven_central</id>
46-
<name>Maven Central</name>
47-
<url>https://repo.maven.apache.org/maven2/</url>
48-
</repository>
49-
</repositories>
5043
</project>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class SingleRxJavaToCoroutineDeferredUnitTest {
129129
}
130130
}
131131
}
132-
deffered.assertResultsTrue()
132+
defered.assertResultsTrue()
133133
}
134134

135135
// using suspendCoroutines with extension
@@ -174,7 +174,7 @@ class SingleRxJavaToCoroutineDeferredUnitTest {
174174
}
175175
@Test
176176
fun `test using suspendCancellableCoroutine with custom callback`(): Unit = runBlocking {
177-
getFilteredProducts().toDeferredWithsuspendCancellableCoroutine(onSuccess = { deferredResult ->
177+
getFilteredProducts().toDeferredWithSuspendCancellableCoroutine(onSuccess = { deferredResult ->
178178
launch { deferredResult.assertResultsTrue() }
179179
}, onError = { error ->
180180
println("Error: ${error.message}")

0 commit comments

Comments
 (0)