From 3b703bf6b3d4b8cddb7fcea4478b8ac5ba5958bd Mon Sep 17 00:00:00 2001 From: kshitijk4poor <82637225+kshitijk4poor@users.noreply.github.com> Date: Wed, 29 Jul 2026 10:25:37 +0500 Subject: [PATCH] fix(tts): accept stream kwarg in xAI TTS test mocks Commit a1bc12f19 added stream=True to requests.post() in _generate_xai_tts, but 4 fake_post mocks in test_tts_xai_speech_tags.py still used the old signature without the stream parameter, causing TypeError in CI slice 5/8. --- tests/tools/test_tts_xai_speech_tags.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/tools/test_tts_xai_speech_tags.py b/tests/tools/test_tts_xai_speech_tags.py index 5559241bff6..a2e407a887a 100644 --- a/tests/tools/test_tts_xai_speech_tags.py +++ b/tests/tools/test_tts_xai_speech_tags.py @@ -143,7 +143,7 @@ def test_generate_xai_tts_uses_oauth_pinned_base_url(tmp_path, monkeypatch): def raise_for_status(self): pass - def fake_post(url, headers, json, timeout): + def fake_post(url, headers, json, timeout, stream=False): captured["url"] = url captured["headers"] = headers return FakeResponse() @@ -590,7 +590,7 @@ def test_generate_xai_tts_omits_text_normalization_by_default(tmp_path, monkeypa fake_response.content = b"mp3" fake_response.raise_for_status.return_value = None - def fake_post(url, headers, json, timeout): + def fake_post(url, headers, json, timeout, stream=False): captured["json"] = json return fake_response @@ -614,7 +614,7 @@ def test_generate_xai_tts_sends_text_normalization_when_enabled(tmp_path, monkey fake_response.content = b"mp3" fake_response.raise_for_status.return_value = None - def fake_post(url, headers, json, timeout): + def fake_post(url, headers, json, timeout, stream=False): captured["json"] = json return fake_response @@ -640,7 +640,7 @@ def test_generate_xai_tts_omits_text_normalization_when_explicit_false( fake_response.content = b"mp3" fake_response.raise_for_status.return_value = None - def fake_post(url, headers, json, timeout): + def fake_post(url, headers, json, timeout, stream=False): captured["json"] = json return fake_response