Skip to content

Commit ae7709d

Browse files
committed
Tweak typo in test case
1 parent ac9c4d8 commit ae7709d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_connection_options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ def test_mysql_explicit_pool_size():
4343

4444

4545
def test_mysql_ssl():
46-
backend = MySQLBackend("postgres://localhost/database?ssl=true")
46+
backend = MySQLBackend("mysql://localhost/database?ssl=true")
4747
kwargs = backend._get_connection_kwargs()
4848
assert kwargs == {"ssl": True}
4949

5050

5151
def test_mysql_explicit_ssl():
52-
backend = MySQLBackend("postgres://localhost/database", ssl=True)
52+
backend = MySQLBackend("mysql://localhost/database", ssl=True)
5353
kwargs = backend._get_connection_kwargs()
5454
assert kwargs == {"ssl": True}

0 commit comments

Comments
 (0)