From 3b427a47b64685a8f48b19ed80d101d2f57f0e3d Mon Sep 17 00:00:00 2001 From: filipi87 Date: Fri, 27 Feb 2026 11:57:11 -0300 Subject: [PATCH] Fixing Piper test. --- tests/test_piper_tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_piper_tts.py b/tests/test_piper_tts.py index 0ce14bd85..662b9a40c 100644 --- a/tests/test_piper_tts.py +++ b/tests/test_piper_tts.py @@ -125,7 +125,7 @@ async def test_run_piper_tts_error(aiohttp_client): ) frames_to_send = [ - TTSSpeakFrame(text="Error case."), + TTSSpeakFrame(text="Error case.", append_to_context=False), ] expected_down_frames = [AggregatedTextFrame, TTSStoppedFrame, TTSTextFrame]