]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
black
authorJ. Nick Koston <nick@koston.org>
Fri, 24 Mar 2023 23:25:55 +0000 (13:25 -1000)
committerJ. Nick Koston <nick@koston.org>
Fri, 24 Mar 2023 23:25:55 +0000 (13:25 -1000)
test/dialect/mysql/test_compiler.py

index 08595296d46f8a150f0feaea612291d30e703ec7..6c081700a11e45ec38e5a572e19fd6efdf3011c0 100644 (file)
@@ -1529,13 +1529,8 @@ class MatchExpressionTest(fixtures.TestBase, AssertsCompiledSQL):
         )
 
     def test_char_zero(self):
-        t1 = Table(
-            "sometable",
-            MetaData(),
-            Column("unused", CHAR(0))
-        )
+        t1 = Table("sometable", MetaData(), Column("unused", CHAR(0)))
         self.assert_compile(
             schema.CreateTable(t1),
-            "CREATE TABLE sometable (unused "
-            "CHAR(0))",
+            "CREATE TABLE sometable (unused CHAR(0))",
         )