Skip to content

Commit 73be984

Browse files
committed
[TEST] Fix assumeFalse -> assumeTrue in SSLReloadIntegTests
1 parent 49d4b26 commit 73be984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/ssl/SSLReloadIntegTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected boolean transportSSLEnabled() {
9393
}
9494

9595
public void testThatSSLConfigurationReloadsOnModification() throws Exception {
96-
assumeFalse("test fails on JDK 11 currently", JavaVersion.current().compareTo(JavaVersion.parse("11")) < 0);
96+
assumeTrue("test fails on JDK 11 currently", JavaVersion.current().compareTo(JavaVersion.parse("11")) < 0);
9797
Path keyPath = createTempDir().resolve("testnode_updated.pem");
9898
Path certPath = createTempDir().resolve("testnode_updated.crt");
9999
Files.copy(getDataPath("/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode_updated.pem"), keyPath);

0 commit comments

Comments
 (0)