diff --git a/tests/test_briefing_scheduler.py b/tests/test_briefing_scheduler.py index a509890..bb014b1 100644 --- a/tests/test_briefing_scheduler.py +++ b/tests/test_briefing_scheduler.py @@ -84,7 +84,7 @@ async def test_run_slot_morning_runs_on_work_day(): patch("fabledassistant.services.user_profile.get_profile", new_callable=AsyncMock, return_value=fake_profile), \ patch("fabledassistant.services.settings.get_setting", new_callable=AsyncMock, return_value="UTC"), \ patch("fabledassistant.services.briefing_conversations.get_or_create_today_conversation", new_callable=AsyncMock) as mock_conv, \ - patch("fabledassistant.services.briefing_pipeline.run_slot_injection", new_callable=AsyncMock, return_value="") as mock_inject, \ + patch("fabledassistant.services.briefing_pipeline.run_slot_injection", new_callable=AsyncMock, return_value=("", {})) as mock_inject, \ patch("fabledassistant.services.briefing_conversations.post_message", new_callable=AsyncMock), \ patch("fabledassistant.services.push.send_push_notification", new_callable=AsyncMock):