From: Avery Fischer Date: Mon, 12 May 2025 15:44:35 +0000 (+0200) Subject: reformat for line length X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c67f4b7ce25c363d525cd2483370b0be024160d9;p=thirdparty%2Fsqlalchemy%2Falembic.git reformat for line length --- diff --git a/tests/test_autogen_render.py b/tests/test_autogen_render.py index cf71da07..ac406742 100644 --- a/tests/test_autogen_render.py +++ b/tests/test_autogen_render.py @@ -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),