File tree Expand file tree Collapse file tree
test/org/apache/el/parser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public void testIdentifierStart() {
6161 *
6262 * In Java 24, the definition of Java Letter and/or Java Digit has changed.
6363 */
64- Assume .assumeTrue (Runtime .version ().feature () < 24 );
64+ Assume .assumeTrue ("Test only works on Java 21 to 23" , Runtime .version ().feature () < 24 );
6565 for (int i = 0 ; i < 0xFFFF ; i ++) {
6666 if (Character .isJavaIdentifierStart (i )) {
6767 testIdentifier ((char ) i , 'b' );
@@ -86,7 +86,7 @@ public void testIdentifierPart() {
8686 *
8787 * In Java 24, the definition of Java Letter and/or Java Digit has changed.
8888 */
89- Assume .assumeTrue (Runtime .version ().feature () < 24 );
89+ Assume .assumeTrue ("Test only works on Java 21 to 23" , Runtime .version ().feature () < 24 );
9090 for (int i = 0 ; i < 0xFFFF ; i ++) {
9191 if (Character .isJavaIdentifierPart (i )) {
9292 testIdentifier ('b' , (char ) i );
You can’t perform that action at this time.
0 commit comments