Gradle, native: Actualize stacktrace format in tests

This commit is contained in:
Ilya Matveev
2020-03-07 18:07:08 +07:00
parent a51230d307
commit 38b5414f30
@@ -1635,7 +1635,7 @@ class NewMultiplatformIT : BaseGradleIT() {
.single { it.getAttribute("name").value == "fail" }
.getChild("failure")
.text
assertTrue(stacktrace.contains("""at org\.foo\.test\.fail\(.*test\.kt:24\)""".toRegex()))
assertTrue(stacktrace.contains("""at org\.foo\.test#fail\(.*test\.kt:24\)""".toRegex()))
}
assertTestResults("testProject/new-mpp-native-tests/TEST-TestKt.xml", hostTestTask)