Skip to content

Commit

Permalink
fixup! Unify messages about exit codes in StandaloneTests
Browse files Browse the repository at this point in the history
spotlessApply
  • Loading branch information
rybak committed Aug 6, 2023
1 parent 7d1d6c3 commit e96edf4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ void executeWithJarredTestClasses() {
}

private static String getExitCodeMessage(Result result) {
return "Exit codes don't match. Stdout:\n" +
result.getOutput("out") + "\n\nStderr:\n" + result.getOutput("err") + "\n";
return "Exit codes don't match. Stdout:\n" + result.getOutput("out") + //
"\n\nStderr:\n" + result.getOutput("err") + "\n";
}

/**
Expand Down

0 comments on commit e96edf4

Please sign in to comment.