From b281c8cdbf81e3e18d0eeff06cee66491139e84f Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 28 Jul 2014 13:11:04 -0400 Subject: [PATCH] - find the remaining not cleaning up correctly test --- test/sql/test_query.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) -- 2.47.3