Skip to content

Commit 9e5e8f8

Browse files
committed
Remove unneeded exception
1 parent f4a0fcd commit 9e5e8f8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

kotlinx-coroutines-test/common/src/TestCoroutineScope.kt

-5
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ private class TestCoroutineScopeImpl(
107107
}
108108
}
109109

110-
internal class ExceptionReportAfterCleanup(cause: Throwable) : IllegalStateException(
111-
"Attempting to report an uncaught exception after the test coroutine scope was already cleaned up",
112-
cause
113-
)
114-
115110
private fun CoroutineContext.activeJobs(): Set<Job> {
116111
return checkNotNull(this[Job]).children.filter { it.isActive }.toSet()
117112
}

0 commit comments

Comments
 (0)