diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2021-11-07 21:19:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-11-07 21:19:45 +0000 |
commit | 201c00bc0837af831f115e8313ad3ccb0be97e7a (patch) | |
tree | beb7558e95d073b63fa4bb76d830ccaa2de9711a /test/dialect/test_sqlite.py | |
parent | 5b1c9053b0903b2d5a06f82b47fe16a870696ddc (diff) | |
parent | d050193daaa8d91371c759296f3304b8641c1976 (diff) | |
download | sqlalchemy-201c00bc0837af831f115e8313ad3ccb0be97e7a.tar.gz |
Merge "fully implement future engine and remove legacy" into main
Diffstat (limited to 'test/dialect/test_sqlite.py')
-rw-r--r-- | test/dialect/test_sqlite.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index eb68c0c6f..a2fe81a4b 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -841,6 +841,7 @@ class AttachedDBTest(fixtures.TestBase): self.metadata = MetaData() def teardown_test(self): + self.conn.rollback() with self.conn.begin(): self.metadata.drop_all(self.conn) self.conn.close() @@ -2468,10 +2469,6 @@ class SavepointTest(fixtures.TablesTest): connection.close() -class FutureSavepointTest(fixtures.FutureEngineMixin, SavepointTest): - pass - - class TypeReflectionTest(fixtures.TestBase): __only_on__ = "sqlite" |