]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix test that incorrectly used ; as query separator
authorFederico Caselli <cfederico87@gmail.com>
Thu, 18 Feb 2021 21:21:54 +0000 (22:21 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Thu, 18 Feb 2021 21:21:54 +0000 (22:21 +0100)
Change-Id: I31e9973930d90184bbabda0bff6346eca4e00c37

test/dialect/mssql/test_engine.py

index bbdbe5cca4bbe0f6ad7eb866ac9af5865131191d..bfaa5f576492b7a55a17c93159484bdf0fb6f70b 100644 (file)
@@ -161,7 +161,7 @@ class ParseConnectTest(fixtures.TestBase):
         dialect = pyodbc.dialect()
         u = url.make_url(
             "mssql+pyodbc://@server_name/db_name?"
-            "driver=ODBC+Driver+17+for+SQL+Server;"
+            "driver=ODBC+Driver+17+for+SQL+Server&"
             "authentication=ActiveDirectoryIntegrated"
         )
         connection = dialect.create_connect_args(u)