diff options
Diffstat (limited to 'test/orm/lazytest1.py')
-rw-r--r-- | test/orm/lazytest1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/lazytest1.py b/test/orm/lazytest1.py index 9f2d53e9d..2cabac3a2 100644 --- a/test/orm/lazytest1.py +++ b/test/orm/lazytest1.py @@ -7,7 +7,7 @@ import datetime class LazyTest(AssertMixin): def setUpAll(self): global info_table, data_table, rel_table, metadata - metadata = BoundMetaData(testbase.db) + metadata = MetaData(testbase.db) info_table = Table('infos', metadata, Column('pk', Integer, primary_key=True), Column('info', String)) |