From: Mike Bayer Date: Fri, 16 Apr 2010 18:13:13 +0000 (-0400) Subject: do a check on this one to fix the buildbot X-Git-Tag: rel_0_6_0~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a352c69f9c66bdc7ef90ecaffcc0c65b5911073;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git do a check on this one to fix the buildbot --- diff --git a/test/sql/test_unicode.py b/test/sql/test_unicode.py index 0a6ddfd400..a116d34cbd 100644 --- a/test/sql/test_unicode.py +++ b/test/sql/test_unicode.py @@ -118,7 +118,7 @@ class EscapesDefaultsTest(testing.TestBase): Column(u'special_col', Integer, Sequence('special_col'), primary_key=True), Column('data', String(50)) # to appease SQLite without DEFAULT VALUES ) - t1.create() + metadata.create_all() try: engine = metadata.bind @@ -134,6 +134,6 @@ class EscapesDefaultsTest(testing.TestBase): # ensure that executioncontext._exec_default() is encoding. t1.insert().execute(data='foo') finally: - t1.drop() + metadata.drop_all()