Skip to content

Commit

Permalink
fix incorrect assertion #nolog
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed May 19, 2024
1 parent 811e044 commit a2c266c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ def test_shutdown_reconnect(self, random):
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()
Expand Down

0 comments on commit a2c266c

Please sign in to comment.