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 ac9c4d8 commit ae7709dCopy full SHA for ae7709d
tests/test_connection_options.py
@@ -43,12 +43,12 @@ def test_mysql_explicit_pool_size():
43
44
45
def test_mysql_ssl():
46
- backend = MySQLBackend("postgres://localhost/database?ssl=true")
+ backend = MySQLBackend("mysql://localhost/database?ssl=true")
47
kwargs = backend._get_connection_kwargs()
48
assert kwargs == {"ssl": True}
49
50
51
def test_mysql_explicit_ssl():
52
- backend = MySQLBackend("postgres://localhost/database", ssl=True)
+ backend = MySQLBackend("mysql://localhost/database", ssl=True)
53
54
0 commit comments