Skip to content

Commit 2bf2d79

Browse files
committed
Fix tests introduced by weak ciphers deprecation in the server (WL#15800)
1 parent e135d53 commit 2bf2d79

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_mysqlx_pooling.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -637,13 +637,13 @@ def test_get_client_with_tls_version(self):
637637

638638
# Verify given TLS cipher suite is used
639639
exp_res = [
640-
"DHE-RSA-AES256-SHA256",
641-
"DHE-RSA-AES256-SHA256",
640+
"ECDHE-RSA-AES256-GCM-SHA384",
641+
"DHE-RSA-AES256-GCM-SHA384",
642642
"DHE-RSA-AES128-GCM-SHA256",
643643
]
644644
test_ciphers = [
645-
["TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"],
646-
["DHE-RSA-AES256-SHA256"],
645+
["TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"],
646+
["TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"],
647647
["TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"],
648648
]
649649
settings["tls-versions"] = "TLSv1.2"

0 commit comments

Comments
 (0)