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
@@ -103,8 +87,8 @@ public fun verifyDump(vararg traces: String, ignoredCoroutine: String? = null) {
103
87
return@forEach
104
88
}
105
89
106
-
val expected = traces[index -1].applyBackspace().split("\n\tat kotlinx.coroutines.debug.ArtificialStackFrames.coroutineCreation(ArtificialStackFrames.kt)\n", limit =2)
107
-
val actual = value.applyBackspace().split("\n\tat kotlinx.coroutines.debug.ArtificialStackFrames.coroutineCreation(ArtificialStackFrames.kt)\n", limit =2)
90
+
val expected = traces[index -1].split("\n\tat kotlinx.coroutines.debug.ArtificialStackFrames.coroutineCreation(ArtificialStackFrames.kt)\n", limit =2)
91
+
val actual = value.split("\n\tat kotlinx.coroutines.debug.ArtificialStackFrames.coroutineCreation(ArtificialStackFrames.kt)\n", limit =2)
108
92
assertEquals(expected.size, actual.size, "Creation stacktrace should be part of the expected input")
0 commit comments