You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get rid of ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS to reduce the tensi… (#3869)
* Get rid of ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS to reduce the tension between develop and K2 branches
* Remove obsolete workaround
Target ticket: KT-61577
Copy file name to clipboardExpand all lines: kotlinx-coroutines-core/jvm/test/TestBase.kt
+2-5
Original file line number
Diff line number
Diff line change
@@ -55,8 +55,6 @@ public actual typealias TestResult = Unit
55
55
* ```
56
56
*/
57
57
@Suppress(
58
-
// Counterpart for @Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS")
59
-
"NO_ACTUAL_CLASS_MEMBER_FOR_EXPECTED_CLASS",
60
58
// fixme replace the suppress with AllowDifferentMembersInActual once stdlib is updated to 1.9.20 https://github.com/Kotlin/kotlinx.coroutines/issues/3846
@@ -81,13 +79,12 @@ public actual open class TestBase(private var disableOutCheck: Boolean) {
81
79
*/
82
80
privatelateinitvar previousOut:PrintStream
83
81
84
-
/**
82
+
/**
85
83
* Throws [IllegalStateException] like `error` in stdlib, but also ensures that the test will not
86
84
* complete successfully even if this exception is consumed somewhere in the test.
87
85
*/
88
86
// fixme replace the suppress with AllowDifferentMembersInActual once stdlib is updated to 1.9.20 https://github.com/Kotlin/kotlinx.coroutines/issues/3846
0 commit comments