Skip to content
Merged
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 @@ -99,7 +99,7 @@ public void testSuppressedOnJDK8u262() {

public void testLoginByKeytab() throws IOException, PrivilegedActionException {
assumeFalse("This test fails often on Java 17 early access. See: https://github.com/elastic/elasticsearch/issues/72120",
"17-ea".equals(System.getProperty("java.version")));
"17".equals(System.getProperty("java.version")));
testSuppressedOnJDK8u262();
final String userPrincipalName = System.getProperty(TEST_USER_WITH_KEYTAB_KEY);
final String keytabPath = System.getProperty(TEST_USER_WITH_KEYTAB_PATH_KEY);
Expand All @@ -111,7 +111,7 @@ public void testLoginByKeytab() throws IOException, PrivilegedActionException {

public void testLoginByUsernamePassword() throws IOException, PrivilegedActionException {
assumeFalse("This test fails often on Java 17 early access. See: https://github.com/elastic/elasticsearch/issues/72120",
"17-ea".equals(System.getProperty("java.version")));
"17".equals(System.getProperty("java.version")));
testSuppressedOnJDK8u262();
final String userPrincipalName = System.getProperty(TEST_USER_WITH_PWD_KEY);
final String password = System.getProperty(TEST_USER_WITH_PWD_PASSWD_KEY);
Expand All @@ -123,7 +123,7 @@ public void testLoginByUsernamePassword() throws IOException, PrivilegedActionEx

public void testGetOauth2TokenInExchangeForKerberosTickets() throws PrivilegedActionException, GSSException, IOException {
assumeFalse("This test fails often on Java 17 early access. See: https://github.com/elastic/elasticsearch/issues/72120",
"17-ea".equals(System.getProperty("java.version")));
"17".equals(System.getProperty("java.version")));
testSuppressedOnJDK8u262();
final String userPrincipalName = System.getProperty(TEST_USER_WITH_PWD_KEY);
final String password = System.getProperty(TEST_USER_WITH_PWD_PASSWD_KEY);
Expand Down