diff options
author | Federico Caselli <cfederico87@gmail.com> | 2021-09-14 23:38:00 +0200 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-11-26 10:14:44 -0500 |
commit | 5eb407f84bdabdbcd68975dbf76dc4c0809d7373 (patch) | |
tree | 0d37ab4b9c28d8a0fa6cefdcc1933d52ffd9a599 /test/ext/asyncio/test_engine_py3k.py | |
parent | 8ddb3ef165d0c2d6d7167bb861bb349e68b5e8df (diff) | |
download | sqlalchemy-5eb407f84bdabdbcd68975dbf76dc4c0809d7373.tar.gz |
Added support for ``psycopg`` dialect.
Both sync and async versions are supported.
Fixes: #6842
Change-Id: I57751c5028acebfc6f9c43572562405453a2f2a4
Diffstat (limited to 'test/ext/asyncio/test_engine_py3k.py')
-rw-r--r-- | test/ext/asyncio/test_engine_py3k.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/test/ext/asyncio/test_engine_py3k.py b/test/ext/asyncio/test_engine_py3k.py index 44cf9388c..aee71f8d5 100644 --- a/test/ext/asyncio/test_engine_py3k.py +++ b/test/ext/asyncio/test_engine_py3k.py @@ -634,7 +634,11 @@ class AsyncEventTest(EngineFixture): eq_( canary.mock_calls, - [mock.call(sync_conn, mock.ANY, "select 1", (), mock.ANY, False)], + [ + mock.call( + sync_conn, mock.ANY, "select 1", mock.ANY, mock.ANY, False + ) + ], ) @async_test @@ -651,7 +655,11 @@ class AsyncEventTest(EngineFixture): eq_( canary.mock_calls, - [mock.call(sync_conn, mock.ANY, "select 1", (), mock.ANY, False)], + [ + mock.call( + sync_conn, mock.ANY, "select 1", mock.ANY, mock.ANY, False + ) + ], ) @async_test |