Skip to content

Commit a2c266c

Browse files
fix incorrect assertion #nolog
1 parent 811e044 commit a2c266c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/common/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,7 @@ def test_shutdown_reconnect(self, random):
11831183
task.join()
11841184
c._trigger_event.assert_called_once_with('__disconnect_final',
11851185
namespace='/')
1186-
assert c._reconnect_task.join.called_once_with()
1186+
c._reconnect_task.join.assert_called_once_with()
11871187

11881188
def test_handle_eio_connect(self):
11891189
c = client.Client()

0 commit comments

Comments
 (0)