Browse Source

Add logging to help debug #572 #nolog

pull/599/head
Miguel Grinberg 4 years ago
parent
commit
aae49c253e
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      tests/asyncio/test_asyncio_client.py

2
tests/asyncio/test_asyncio_client.py

@ -808,6 +808,8 @@ class TestAsyncClient(unittest.TestCase):
side_effect=[ValueError, exceptions.ConnectionError, None]
)
_run(c._handle_reconnect())
print(wait_for.mock.call_count) # logging to debug #572
print(wait_for.mock.call_args_list)
assert wait_for.mock.call_count == 2
assert [x[0][1] for x in asyncio.wait_for.mock.call_args_list] == [
1.5,

Loading…
Cancel
Save