Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WFCORE-6506] Initial Java releases contain neither minor nor micro part in the version string - adjusting tests #5671

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void testCreateConfiguration() throws UnknownHostException {
private static int getJavaVersion() throws NumberFormatException {
final String versionString = System.getProperty("java.version");
int indexOfDot = versionString.indexOf('.');
return Integer.valueOf(versionString.substring(0, indexOfDot)).intValue();
return Integer.valueOf(indexOfDot > 0 ? versionString.substring(0, indexOfDot) : versionString).intValue();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ private void testJPMSArguments(final Collection<String> command, final int expec
private static int getJavaVersion() throws NumberFormatException {
final String versionString = System.getProperty("java.version");
int indexOfDot = versionString.indexOf('.');
return Integer.valueOf(versionString.substring(0, indexOfDot)).intValue();
return Integer.valueOf(indexOfDot > 0 ? versionString.substring(0, indexOfDot) : versionString).intValue();
}

private void testModularJvmArguments(final Collection<String> command, final int expectedCount) {
Expand Down