From 9cc0e3995585274828759ecc6870ce4b4c234e17 Mon Sep 17 00:00:00 2001 From: Twirre Meulenbelt <43213592+TwirreM@users.noreply.github.com> Date: Thu, 11 Dec 2025 12:04:24 +0100 Subject: [PATCH] fix: failures main tests since VAD agent initialization was changed The test still expects the VAD agent to be started in main, rather than in the RI Communication Agent. ref: N25B-356 --- 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,