From a25afe283483adb709272eb3d589502f325c75f3 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 4 Nov 2025 17:15:20 +0100 Subject: [PATCH] Fix hassio test RuntimeWarning (#155787) --- tests/components/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/components/conftest.py b/tests/components/conftest.py index a35d86ec819..86502d87312 100644 --- a/tests/components/conftest.py +++ b/tests/components/conftest.py @@ -547,6 +547,7 @@ def supervisor_client() -> Generator[AsyncMock]: supervisor_client.homeassistant = AsyncMock() supervisor_client.host = AsyncMock() supervisor_client.jobs = AsyncMock() + supervisor_client.jobs.info.return_value = MagicMock() supervisor_client.mounts.info.return_value = mounts_info_mock supervisor_client.os = AsyncMock() supervisor_client.resolution = AsyncMock()