diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-20 17:57:30 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-20 17:57:30 -0500 |
commit | 45cdb17ef0b08f31a42423554ec94ed913fb31fe (patch) | |
tree | 677b1980bf5b4ae3a595848117ce5a0de8b9639d /test/dialect/test_postgresql.py | |
parent | ca2d85540f21f2afaa9def55b8f907adced62e80 (diff) | |
download | sqlalchemy-45cdb17ef0b08f31a42423554ec94ed913fb31fe.tar.gz |
- fixes for PG, mysql, twophase
- added "pool_events" arg to create_engine(), "events" to pool, allowing
establishment of listeners which fire before those of the dialect
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 150dacf18..6dbcb9bfd 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -487,7 +487,7 @@ class InsertTest(TestBase, AssertsExecutionResults): def teardown(self): metadata.drop_all() - metadata.tables.clear() + metadata.clear() if self.engine is not testing.db: self.engine.dispose() |