From a2c266c6f9868dac4569bb01c63dc443a2291dd1 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 19 May 2024 23:11:35 +0100 Subject: [PATCH] fix incorrect assertion #nolog --- tests/common/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/test_client.py b/tests/common/test_client.py index a9117bc..eecad7d 100644 --- a/tests/common/test_client.py +++ b/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()