Output has changed even without the SQLa patch, update #122 tests.

This commit is contained in:
Gabriel 2011-07-05 01:45:52 +02:00
parent 3fe1b4a3be
commit 15911e6bfe

View File

@ -76,7 +76,7 @@ class TestSchemaDiff(fixture.DB):
from migrate.changeset import schema
meta = MetaData()
tmp_schemadiff = Table('tmp_schemadiff', meta,
Column('id', Integer(), primary_key=True, nullable=False),
Column('id', Integer, primary_key=True, nullable=False),
Column('name', UnicodeText(length=None)),
Column('data', UnicodeText(length=None)),
)