Skip to content

Commit

Permalink
replace \n with real newline
Browse files Browse the repository at this point in the history
  • Loading branch information
mcalmer committed Aug 17, 2023
1 parent e6a90b8 commit d2d853a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ public String getSummary() {
*/
@Override
public String getDetails() {
return String.format("<pre>%s</pre>", details);
return String.format("<pre>%s</pre>", details.replaceAll("\\\\n", "\n"));
}
}

0 comments on commit d2d853a

Please sign in to comment.