These drop indexes appear to only be for firebird.

Once firebird is fixed, they're not needed.
This commit is contained in:
Chris Withers 2011-02-10 15:16:15 +00:00
parent 9c9fe2fc24
commit f749919240

View File

@ -262,7 +262,6 @@ class TestAddDropColumn(fixture.DB):
self._check_index(False)
Index('ix_data', col).drop(bind=self.engine)
col.drop()
@fixture.usedb()
@ -284,7 +283,6 @@ class TestAddDropColumn(fixture.DB):
self._check_index(True)
Index('ix_data', col).drop(bind=self.engine)
col.drop()
@fixture.usedb()