Skip to content

Commit

Permalink
Fix failing test in ConsoleLauncherTests
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Aug 17, 2023
1 parent bc862e0 commit 9a9063d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void displayHelp(String command) {
var exitCode = consoleLauncher.run(command, "--help").getExitCode();

assertEquals(0, exitCode);
assertThat(stringWriter.toString()).contains("--help", "--disable-banner", "--scan-classpath" /* ... */);
assertThat(stringWriter.toString()).contains("--help", "--disable-banner" /* ... */);
}

@ParameterizedTest(name = "{0}")
Expand Down

0 comments on commit 9a9063d

Please sign in to comment.