Skip to content

Commit 895f433

Browse files
committed
Adjust error message to changes in Gradle 8.0-rc-2
1 parent 353a7c7 commit 895f433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void runsTestsInNativeImage() {
4646
assertFalse(result.isTimedOut(), () -> "tool timed out: " + result);
4747

4848
assumeFalse(
49-
result.getOutputLines("err").stream().anyMatch(line -> line.contains("No compatible toolchains found")),
49+
result.getOutputLines("err").stream().anyMatch(line -> line.contains("No matching toolchains found")),
5050
"Abort test if GraalVM is not installed");
5151

5252
assertEquals(0, result.getExitCode());

0 commit comments

Comments
 (0)