]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
do a check on this one to fix the buildbot
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Apr 2010 18:13:13 +0000 (14:13 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Apr 2010 18:13:13 +0000 (14:13 -0400)
test/sql/test_unicode.py

index 0a6ddfd400dfac34f2b8ad4f7e3d6f7656c89ada..a116d34cbd2bebe484060f5fee8fc1f830ba5206 100644 (file)
@@ -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()