Skip to content

Commit

Permalink
Fix missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Apr 26, 2022
1 parent b90fbf1 commit dbe2fea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public Result assertFailure() {
public Result assertSuccess() {
if (exitCode != 0) {
final StringBuilder sb = ExecutionResult.appendCommand(
new StringBuilder("mvnd returned ").append(exitCode),
new StringBuilder("mvnd returned ").append(exitCode).append(", args: "),
args);
if (exitCode == CommandProcess.TIMEOUT_EXIT_CODE) {
sb.append(" (timeout)");
Expand Down

0 comments on commit dbe2fea

Please sign in to comment.