Skip to content

Commit

Permalink
[misc] correct Tls test behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Jan 9, 2023
1 parent 9f0bec5 commit 609aa2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/mariadb/jdbc/integration/SslTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static void beforeAll2() throws SQLException {

Statement stmt = sharedConn.createStatement();
// mysql 8.0.31 broken public key retrieval, so avoid FLUSHING for now
Assumptions.assumeTrue(!isMariaDBServer() && !exactVersion(8, 0, 31));
Assumptions.assumeTrue(isMariaDBServer() || (!isMariaDBServer() && !exactVersion(8, 0, 31)));
stmt.execute("FLUSH PRIVILEGES");
sslPort =
System.getenv("TEST_MAXSCALE_TLS_PORT") == null
Expand Down

0 comments on commit 609aa2d

Please sign in to comment.