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 e135d53 commit 2bf2d79Copy full SHA for 2bf2d79
tests/test_mysqlx_pooling.py
@@ -637,13 +637,13 @@ def test_get_client_with_tls_version(self):
637
638
# Verify given TLS cipher suite is used
639
exp_res = [
640
- "DHE-RSA-AES256-SHA256",
641
+ "ECDHE-RSA-AES256-GCM-SHA384",
+ "DHE-RSA-AES256-GCM-SHA384",
642
"DHE-RSA-AES128-GCM-SHA256",
643
]
644
test_ciphers = [
645
- ["TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"],
646
- ["DHE-RSA-AES256-SHA256"],
+ ["TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"],
+ ["TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"],
647
["TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"],
648
649
settings["tls-versions"] = "TLSv1.2"
0 commit comments