Skip to content

Commit

Permalink
[misc] correct cipher limitation test
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed May 13, 2022
1 parent a6972ba commit 0cef81d
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 @@ -150,7 +150,7 @@ public void enabledSslCipherSuites() throws SQLException {
try (Connection con =
createCon(
baseOptions
+ "&sslMode=trust&enabledSslCipherSuites=TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_GCM_SHA256",
+ "&sslMode=trust&enabledSslCipherSuites=TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
sslPort)) {
assertNotNull(getSslVersion(con));
}
Expand Down

0 comments on commit 0cef81d

Please sign in to comment.