Skip to content

Commit a85d611

Browse files
committed
Fix 1.3.20 incompatible test
1 parent b0e1e93 commit a85d611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/jvm/test/CancellableContinuationJvmTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CancellableContinuationJvmTest : TestBase() {
1616
private suspend fun checkToString() {
1717
suspendCancellableCoroutine<Unit> {
1818
it.resume(Unit)
19-
assertTrue(it.toString().contains("kotlinx/coroutines/CancellableContinuationJvmTest.checkToString(CancellableContinuationJvmTest.kt"))
19+
assertTrue(it.toString().contains("kotlinx.coroutines.CancellableContinuationJvmTest.checkToString(CancellableContinuationJvmTest.kt"))
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)