Skip to content

Commit fea05c3

Browse files
sormurasmarcphilipp
authored andcommitted
Fix ConsoleLauncherTests and StandaloneTests
(cherry picked from commit 548fb69)
1 parent c556735 commit fea05c3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ void displayBanner(String command) {
4747
var consoleLauncher = new ConsoleLauncher(ConsoleTestExecutor::new, printSink, printSink);
4848
consoleLauncher.run(command);
4949

50-
assertThat(stringWriter.toString()).contains(
51-
"Thanks for using JUnit! Support its development at https://junit.org/sponsoring");
50+
assertThat(stringWriter.toString()).contains("Thanks for using JUnit!");
5251
}
5352

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

platform-tooling-support-tests/src/test/java/platform/tooling/support/tests/StandaloneTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ void listAllObservableEngines() {
6767
.setTool(new Java()) //
6868
.setProject("standalone") //
6969
.addArguments("-jar", MavenRepo.jar("junit-platform-console-standalone")) //
70-
.addArguments("engines", "--disable-banner").build() //
70+
.addArguments("engines", "--disable-ansi-colors", "--disable-banner").build() //
7171
.run(false);
7272

7373
assertEquals(0, result.getExitCode(), () -> getExitCodeMessage(result));

0 commit comments

Comments
 (0)