From 9cfd8f85b618d962befac8b59bfce9f2aeb11f66 Mon Sep 17 00:00:00 2001 From: giubots Date: Fri, 2 May 2025 11:58:17 +0200 Subject: [PATCH] test: add new parameters to tests --- tests/test_client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_client.py b/tests/test_client.py index 4610ea9..f38d28b 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -51,6 +51,10 @@ class TestClientCallbacks(BaseTestCase): "use_vad": True, "max_clients": 4, "max_connection_time": 600, + "send_last_n_segments": 10, + "no_speech_thresh": 0.45, + "clip_audio": False, + "same_output_threshold": 10, }) self.client.on_open(self.mock_ws_app) self.mock_ws_app.send.assert_called_with(expected_message)