Browse Source

fix incorrect assertion #nolog

pull/1346/head
Miguel Grinberg 11 months ago
parent
commit
a2c266c6f9
Failed to extract signature
  1. 2
      tests/common/test_client.py

2
tests/common/test_client.py

@ -1183,7 +1183,7 @@ class TestClient(unittest.TestCase):
task.join()
c._trigger_event.assert_called_once_with('__disconnect_final',
namespace='/')
assert c._reconnect_task.join.called_once_with()
c._reconnect_task.join.assert_called_once_with()
def test_handle_eio_connect(self):
c = client.Client()

Loading…
Cancel
Save