]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
style: reformat test_table_tablespace
authorMiguel Grillo <miguel_grillo_orellana@hotmail.com>
Thu, 24 Oct 2024 17:39:28 +0000 (19:39 +0200)
committerMiguel Grillo <miguel_grillo_orellana@hotmail.com>
Thu, 24 Oct 2024 17:39:28 +0000 (19:39 +0200)
test/dialect/oracle/test_compiler.py

index 795fbccdfbdac7431757779e8c331be419d70e46..f723896e40b112dd4833c28c31874ee2b50342a4 100644 (file)
@@ -1666,19 +1666,19 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
             "table1",
             m,
             Column("x", Integer),
-            oracle_tablespace='TEST_TABLESPACE',
+            oracle_tablespace="TEST_TABLESPACE",
         )
         t2 = Table(
             "table2",
             m,
             Column("x", Integer),
-            oracle_tablespace='test_tablespace',
+            oracle_tablespace="test_tablespace",
         )
         t3 = Table(
             "table3",
             m,
             Column("x", Integer),
-            oracle_tablespace='TestTableSpace',
+            oracle_tablespace="TestTableSpace",
         )
         self.assert_compile(
             schema.CreateTable(t),
@@ -1688,9 +1688,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
         )
         self.assert_compile(
             schema.CreateTable(t2),
-            "CREATE TABLE "
-            "table2 (x INTEGER) "
-            'TABLESPACE test_tablespace',
+            "CREATE TABLE " "table2 (x INTEGER) " "TABLESPACE test_tablespace",
         )
         self.assert_compile(
             schema.CreateTable(t3),