diff options
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 |