]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
reformat for line length 1657/head
authorAvery Fischer <avery@averyjfischer.com>
Mon, 12 May 2025 15:44:35 +0000 (17:44 +0200)
committerAvery Fischer <avery@averyjfischer.com>
Mon, 12 May 2025 15:44:35 +0000 (17:44 +0200)
tests/test_autogen_render.py

index cf71da071a90afa39e80cd0b59ae8477e949e6ab..ac406742c1d860704be8eda7225a6df476da9182 100644 (file)
@@ -2035,9 +2035,17 @@ class AutogenRenderTest(TestBase):
             op_obj,
         )
 
-    @testing.combinations(("test.",), (None,), argnames="alembic_module_prefix")
-    def test_render_executesql_alembic_module_prefix(self, alembic_module_prefix):
-        self.autogen_context.opts.update(alembic_module_prefix=alembic_module_prefix)
+    @testing.combinations(
+        ("test.",), (None,),
+        argnames="alembic_module_prefix",
+    )
+    def test_render_executesql_alembic_module_prefix(
+        self,
+        alembic_module_prefix,
+    ):
+        self.autogen_context.opts.update(
+            alembic_module_prefix=alembic_module_prefix
+        )
         op_obj = ops.ExecuteSQLOp("drop table foo")
         eq_(
             autogenerate.render_op_text(self.autogen_context, op_obj),