Skip to content

Commit

Permalink
fix(ios): Xcresult failure stacktrace. The first line is the message,…
Browse files Browse the repository at this point in the history
… not DocumentLocation
  • Loading branch information
matzuk committed Nov 27, 2024
1 parent 8b5087f commit 2b8e80b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ class TestResultsListener(
1 -> {
traces.getOrPut(matchingTests.first()) { StringBuilder() }
.apply {
appendLine(failureSummary.message)
failureSummary.documentLocationInCreatingWorkspace?.let {
if (it.url.isNotBlank()) {
appendLine(it.url)
}
}
appendLine(failureSummary.message)
}
}

Expand Down

0 comments on commit 2b8e80b

Please sign in to comment.