diff options
Diffstat (limited to 'test/dialect/postgresql/test_async_pg_py3k.py')
-rw-r--r-- | test/dialect/postgresql/test_async_pg_py3k.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/postgresql/test_async_pg_py3k.py b/test/dialect/postgresql/test_async_pg_py3k.py index fadf939b8..f6d48f3c6 100644 --- a/test/dialect/postgresql/test_async_pg_py3k.py +++ b/test/dialect/postgresql/test_async_pg_py3k.py @@ -27,7 +27,7 @@ class AsyncPgTest(fixtures.TestBase): # TODO: remove when Iae6ab95938a7e92b6d42086aec534af27b5577d3 # merges - from sqlalchemy.testing import engines + from sqlalchemy.testing import util as testing_util from sqlalchemy.sql import schema metadata = schema.MetaData() @@ -35,7 +35,7 @@ class AsyncPgTest(fixtures.TestBase): try: yield metadata finally: - engines.drop_all_tables(metadata, testing.db) + testing_util.drop_all_tables_from_metadata(metadata, testing.db) @async_test async def test_detect_stale_ddl_cache_raise_recover( |