aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt')
-rw-r--r--kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt b/kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt
index ce20837e..ebe88ce1 100644
--- a/kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt
+++ b/kotlinx-coroutines-core/common/test/AbstractCoroutineTest.kt
@@ -1,5 +1,5 @@
/*
- * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines
@@ -13,7 +13,7 @@ class AbstractCoroutineTest : TestBase() {
fun testNotifications() = runTest {
expect(1)
val coroutineContext = coroutineContext // workaround for KT-22984
- val coroutine = object : AbstractCoroutine<String>(coroutineContext, false) {
+ val coroutine = object : AbstractCoroutine<String>(coroutineContext, true, false) {
override fun onStart() {
expect(3)
}
@@ -53,7 +53,7 @@ class AbstractCoroutineTest : TestBase() {
fun testNotificationsWithException() = runTest {
expect(1)
val coroutineContext = coroutineContext // workaround for KT-22984
- val coroutine = object : AbstractCoroutine<String>(coroutineContext + NonCancellable, false) {
+ val coroutine = object : AbstractCoroutine<String>(coroutineContext + NonCancellable, true, false) {
override fun onStart() {
expect(3)
}
@@ -91,4 +91,4 @@ class AbstractCoroutineTest : TestBase() {
coroutine.resumeWithException(TestException2())
finish(10)
}
-} \ No newline at end of file
+}