File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
core/kotlinx-coroutines-core/test/exceptions Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class StackTraceRecoveryNestedChannelsTest : TestBase() {
3434 channel.close(RecoverableTestException ())
3535
3636 try {
37+ yield () // Will be fixed in 1.3.20 after KT-27190
3738 sendWithContext(coroutineContext)
3839 } catch (e: Exception ) {
3940 verifyStackTrace(e,
@@ -51,7 +52,7 @@ class StackTraceRecoveryNestedChannelsTest : TestBase() {
5152 " \t at kotlinx.coroutines.exceptions.StackTraceRecoveryNestedChannelsTest.sendWithContext(StackTraceRecoveryNestedChannelsTest.kt:18)\n " +
5253 " \t at kotlinx.coroutines.exceptions.StackTraceRecoveryNestedChannelsTest\$ testOfferWithCurrentContext\$ 1.invokeSuspend(StackTraceRecoveryNestedChannelsTest.kt:37)\n " +
5354 " Caused by: kotlinx.coroutines.RecoverableTestException\n " +
54- " \t at kotlinx.coroutines.exceptions.StackTraceRecoveryNestedChannelsTest\$ testOfferWithCurrentContext\$ 1.invokeSuspend(StackTraceRecoveryNestedChannelsTest.kt:33 )\n " +
55+ " \t at kotlinx.coroutines.exceptions.StackTraceRecoveryNestedChannelsTest\$ testOfferWithCurrentContext\$ 1.invokeSuspend(StackTraceRecoveryNestedChannelsTest.kt:34 )\n " +
5556 " \t at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:32)\n " )
5657 }
5758 }
You can’t perform that action at this time.
0 commit comments