summaryrefslogtreecommitdiff
path: root/tests/test_op.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-12-06 16:37:38 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-12-06 16:37:38 -0500
commitda054c2981c641b615e0f01f2220cde9ffad39ce (patch)
treeca163ef1c19746cd9254a432c1265124ea11ebdd /tests/test_op.py
parent273ab3ce4ac96410fdd8728bb4c63143337fccfc (diff)
downloadalembic-da054c2981c641b615e0f01f2220cde9ffad39ce.tar.gz
- test adjustments to account for SQLAlchemy pullreq #7, MSSQL DROP INDEX syntax
Diffstat (limited to 'tests/test_op.py')
-rw-r--r--tests/test_op.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_op.py b/tests/test_op.py
index 581b606..e5f6be5 100644
--- a/tests/test_op.py
+++ b/tests/test_op.py
@@ -642,11 +642,7 @@ def test_naming_changes():
context = op_fixture('mssql')
op.drop_index('ik_test', tablename='t1')
- context.assert_("DROP INDEX [t1].ik_test")
-
- context = op_fixture('mssql')
- op.drop_index('ik_test', table_name='t1')
- context.assert_("DROP INDEX [t1].ik_test")
+ context.assert_("DROP INDEX ik_test ON t1")
context = op_fixture('mysql')
op.drop_constraint("f1", "t1", type="foreignkey")