From 35548f68642cb122d1d1890c5793ed7aaaa6da75 Mon Sep 17 00:00:00 2001 From: Pim Hutting Date: Mon, 15 Dec 2025 18:40:24 +0100 Subject: [PATCH] chore: fixed test that wasn't passing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this was not my test I stole the fix from Björn's cb2ri-gestures ref: N25B-355 --- test/unit/test_main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/unit/test_main.py b/test/unit/test_main.py index 2737c76..a423703 100644 --- a/test/unit/test_main.py +++ b/test/unit/test_main.py @@ -53,8 +53,6 @@ async def test_lifespan_agent_start_exception(): Ensures exceptions are logged properly and re-raised. """ with ( - patch("control_backend.main.VADAgent.start", new_callable=AsyncMock), - patch("control_backend.main.VADAgent.reset_stream", new_callable=AsyncMock), patch( "control_backend.main.RICommunicationAgent.start", new_callable=AsyncMock ) as ri_start,