Skip to content

Commit e696adf

Browse files
committed
BUG26484601: unable to connect to a server using other than TLSv1
Fixes the failing unittest on linux when using 5.7 due to the missing support of tls_v1.2.
1 parent 02b481a commit e696adf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_bugs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4947,7 +4947,7 @@ def test_cursor_prepared_statement_with_charset_latin1(self):
49474947
self._test_charset('latin1', [u'ñ', u'Ñ'])
49484948

49494949

4950-
@unittest.skipIf(tests.MYSQL_VERSION < (5, 7, 21),
4950+
@unittest.skipIf(tests.MYSQL_VERSION < (8, 0, 11),
49514951
"Not support for TLSv1.2 or not available by default")
49524952
class Bug26484601(tests.MySQLConnectorTests):
49534953
"""UNABLE TO CONNECT TO A MYSQL SERVER USING TLSV1.2"""

0 commit comments

Comments
 (0)