From: Shan Date: Sun, 22 Jan 2023 07:01:51 +0000 (-0800) Subject: using pre-commit to lint this time X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9134%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git using pre-commit to lint this time --- diff --git a/test/dialect/mssql/test_reflection.py b/test/dialect/mssql/test_reflection.py index e54337b931..570f25f84b 100644 --- a/test/dialect/mssql/test_reflection.py +++ b/test/dialect/mssql/test_reflection.py @@ -420,10 +420,7 @@ class ReflectionTest(fixtures.TestBase, ComparesTables, AssertsCompiledSQL): ): # Addresses bug #9133 tt = Table( - 'test', - metadata, - Column("id", Integer), - schema=schema_value + "test", metadata, Column("id", Integer), schema=schema_value ) tt.create(connection) found_it = inspect(connection).has_table("test", schema=schema_value)