From: Mike Bayer Date: Mon, 28 Jul 2014 17:11:04 +0000 (-0400) Subject: - find the remaining not cleaning up correctly test X-Git-Tag: rel_0_9_8~80 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b281c8cdbf81e3e18d0eeff06cee66491139e84f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - find the remaining not cleaning up correctly test --- diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 039e8d7e53..9d339336fb 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -230,6 +230,7 @@ class QueryTest(fixtures.TestBase): finally: table.drop(bind=engine) + # TODO: why not in the sqlite suite? @testing.only_on('sqlite+pysqlite') @testing.provide_metadata def test_lastrowid_zero(self): @@ -242,7 +243,7 @@ class QueryTest(fixtures.TestBase): return 0 eng.dialect.execution_ctx_cls = ExcCtx t = Table( - 't', MetaData(), Column('x', Integer, primary_key=True), + 't', self.metadata, Column('x', Integer, primary_key=True), Column('y', Integer)) t.create(eng) r = eng.execute(t.insert().values(y=5))