Skip to content

Commit

Permalink
Fix printing into RESULT.log to use newline (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrandolph authored and grafnu committed Apr 5, 2023
1 parent 7007ea9 commit dc3dc17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ private void recordResult(SequenceResult result, Description description, String
score, message);
notice(resultString);
try (PrintWriter log = new PrintWriter(new FileOutputStream(resultSummary, true))) {
log.print(resultString);
log.println(resultString);
} catch (Exception e) {
throw new RuntimeException("While writing report summary " + resultSummary.getAbsolutePath(),
e);
Expand Down

0 comments on commit dc3dc17

Please sign in to comment.