File tree 1 file changed +2
-1
lines changed
core/kotlinx-coroutines-core/test/exceptions
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class StackTraceRecoveryNestedChannelsTest : TestBase() {
34
34
channel.close(RecoverableTestException ())
35
35
36
36
try {
37
+ yield () // Will be fixed in 1.3.20 after KT-27190
37
38
sendWithContext(coroutineContext)
38
39
} catch (e: Exception ) {
39
40
verifyStackTrace(e,
@@ -51,7 +52,7 @@ class StackTraceRecoveryNestedChannelsTest : TestBase() {
51
52
" \t at kotlinx.coroutines.exceptions.StackTraceRecoveryNestedChannelsTest.sendWithContext(StackTraceRecoveryNestedChannelsTest.kt:18)\n " +
52
53
" \t at kotlinx.coroutines.exceptions.StackTraceRecoveryNestedChannelsTest\$ testOfferWithCurrentContext\$ 1.invokeSuspend(StackTraceRecoveryNestedChannelsTest.kt:37)\n " +
53
54
" 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 " +
55
56
" \t at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:32)\n " )
56
57
}
57
58
}
You can’t perform that action at this time.
0 commit comments