Closed gjwatts closed 1 month ago
FYI, the fix for this in awaitility
should be fixed in PR -> https://github.com/awaitility/awaitility/pull/279
@gjwatts the fix has been released, check it here: https://mvnrepository.com/artifact/org.awaitility/awaitility/4.2.2.
Thanks for pointing that out @artur-ciocanu
Describe the bug When running the latest MPFT TCK with early access (pre-release) versions of Java 23, we hit the following stacktrace:
since the pre-GA builds of Java 23 have appended
-ea
to the Java version that gets reported back in System.getProperty("java.version"). When that happens, aNumberFormatException
is thrown in JavaVersionDetector because the-ea
part cannot be turned into a number (for obvious reasons).The root failure has been reported to awaitility, so once that bug is fixed, then the MPFT TCK will need to be updated to use the fixed version of awaitility for testing with early access versions of Java.