fix: remove incorrect newline

This commit is contained in:
Jonny
2025-02-27 22:32:11 +00:00
parent 9639221a0a
commit 4727d6c399

View File

@@ -79,7 +79,7 @@ class ParallelExamplesSpec extends AnyFlatSpec with BeforeAndAfterAll {
assert(
stdout.toString
.replaceAll("0x[0-9a-f]+", "#addrs#")
.replaceAll("fatal error:.*", "#runtime_error#\n\u0000")
.replaceAll("fatal error:.*", "#runtime_error#\u0000")
.takeWhile(_ != '\u0000')
== expectedOutput
)