summaryrefslogtreecommitdiff
path: root/tests/test_script_production.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2016-11-28 11:22:27 -0500
committerGerrit Code Review <gerrit@awstats.zzzcomputing.com>2016-11-28 11:22:27 -0500
commit17889bd010032d32759dbe370e860a573b1bce11 (patch)
treef0b19fddc6e4f4feba61a91b4df308b7a7d34cf8 /tests/test_script_production.py
parent3926ac6b000ed7f3dbdb5376a54f39351b3b4e35 (diff)
parent5b97778e098720ec37a394bcef27e9b79b178b52 (diff)
downloadalembic-17889bd010032d32759dbe370e860a573b1bce11.tar.gz
Merge "Add single pound to generated comments"
Diffstat (limited to 'tests/test_script_production.py')
-rw-r--r--tests/test_script_production.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_script_production.py b/tests/test_script_production.py
index 7cabc77..1f1b3ea 100644
--- a/tests/test_script_production.py
+++ b/tests/test_script_production.py
@@ -710,14 +710,14 @@ class RewriterTest(TestBase):
eq_(
autogenerate.render_python_code(directives[0].upgrade_ops),
- "### commands auto generated by Alembic - please adjust! ###\n"
+ "# ### commands auto generated by Alembic - please adjust! ###\n"
" op.add_column('t1', "
"sa.Column('x', sa.Integer(), nullable=True))\n"
" op.create_index('ixt', 't1', ['x'], unique=False)\n"
" op.alter_column('t1', 'x',\n"
" existing_type=sa.Integer(),\n"
" nullable=False)\n"
- " ### end Alembic commands ###"
+ " # ### end Alembic commands ###"
)