Skip to content

Commit

Permalink
Flip Expected <> Actual in test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
hmemcpy committed Feb 23, 2024
1 parent 6db6fc0 commit 9b1f0e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ private[zio] class ZTestFrameworkConsoleProperties(configuration: AbstractTestRu
val tf = regexFromHell
.findFirstMatchIn(details)
.map { m =>
val expected = unescapeAnsi(m.group(1)).trim
val actual = unescapeAnsi(m.group(2)).trim
val actual = unescapeAnsi(m.group(1)).trim
val expected = unescapeAnsi(m.group(2)).trim
val ex = new Throwable with NoStackTrace {
override def printStackTrace(s: PrintStream): Unit =
s.println(details)
Expand Down

0 comments on commit 9b1f0e5

Please sign in to comment.