Skip to content

Commit e840fce

Browse files
committed
. d rephrase text about supported JDK versions
1 parent bd04d58 commit e840fce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

approvaltests-tests/src/test/java/org/approvaltests/ci/JavaVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ public void testSupportedJavaVersions() throws IOException
2222
Object yaml = new ObjectMapper(new YAMLFactory()).readValue(testYmlPath, Object.class);
2323
List<String> javaVersions = JsonPath.read(yaml, "$.jobs.build.strategy.matrix.java");
2424
// Java 8 GitHub Action is separate from the normal matrixed CI, so hard-code it here.
25-
Approvals.verify("Supported Java versions: 8, " + String.join(", ", javaVersions));
25+
Approvals.verify("Works on JDK 1.8+ (tested on 1.8, " + String.join(", ", javaVersions) + ").");
2626
}
2727
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Supported Java versions: 8, 17, 21, 24
1+
Works on JDK 1.8+ (tested on 1.8, 17, 21, 24).

0 commit comments

Comments
 (0)