We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49d4b26 commit 73be984Copy full SHA for 73be984
x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/ssl/SSLReloadIntegTests.java
@@ -93,7 +93,7 @@ protected boolean transportSSLEnabled() {
93
}
94
95
public void testThatSSLConfigurationReloadsOnModification() throws Exception {
96
- assumeFalse("test fails on JDK 11 currently", JavaVersion.current().compareTo(JavaVersion.parse("11")) < 0);
+ assumeTrue("test fails on JDK 11 currently", JavaVersion.current().compareTo(JavaVersion.parse("11")) < 0);
97
Path keyPath = createTempDir().resolve("testnode_updated.pem");
98
Path certPath = createTempDir().resolve("testnode_updated.crt");
99
Files.copy(getDataPath("/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode_updated.pem"), keyPath);
0 commit comments