Skip to content

Commit 9a9063d

Browse files
committed
Fix failing test in ConsoleLauncherTests
1 parent bc862e0 commit 9a9063d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform-tests/src/test/java/org/junit/platform/console/ConsoleLauncherTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void displayHelp(String command) {
3838
var exitCode = consoleLauncher.run(command, "--help").getExitCode();
3939

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

4444
@ParameterizedTest(name = "{0}")

0 commit comments

Comments
 (0)