FSchumacher commented on issue #5770: URL: https://github.com/apache/jmeter/issues/5770#issuecomment-1509875631
You can fix this in your test plan by adding a global JSR 223 Listener, which contains the following Groovy code: ```groovy sampleResult.assertionResults.each { it.failureMessage = it.failureMessage .replaceAll("\n", "\\\\n") } ``` That will replace all `\n` chars with an escaped variant `\\n`. PR #5805 should make this hack unnecessary. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org