diff options
Diffstat (limited to 'test/sql/test_deprecations.py')
| -rw-r--r-- | test/sql/test_deprecations.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sql/test_deprecations.py b/test/sql/test_deprecations.py index 22b743434..93e280d4e 100644 --- a/test/sql/test_deprecations.py +++ b/test/sql/test_deprecations.py @@ -178,7 +178,9 @@ class DeprecationWarningsTest(fixtures.TestBase, AssertsCompiledSQL): "The create_engine.convert_unicode parameter and " "corresponding dialect-level" ): - create_engine("mysql://", convert_unicode=True, module=mock.Mock()) + create_engine( + "mysql+mysqldb://", convert_unicode=True, module=mock.Mock() + ) def test_empty_and_or(self): with testing.expect_deprecated( |
