Skip to content

Commit

Permalink
[TEST] Fix assumeFalse -> assumeTrue in SSLReloadIntegTests
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Jul 24, 2018
1 parent 49d4b26 commit 73be984
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected boolean transportSSLEnabled() {
}

public void testThatSSLConfigurationReloadsOnModification() throws Exception {
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);
Path keyPath = createTempDir().resolve("testnode_updated.pem");
Path certPath = createTempDir().resolve("testnode_updated.crt");
Files.copy(getDataPath("/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode_updated.pem"), keyPath);
Expand Down

0 comments on commit 73be984

Please sign in to comment.