From 554c6e0cca3739c7bcf5c52317dd9a559748c2d3 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 13 May 2025 20:17:07 +0000 Subject: [PATCH] Fix service helper tests --- tests/helpers/test_service.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/helpers/test_service.py b/tests/helpers/test_service.py index 4582bce3e05..8ad933e6912 100644 --- a/tests/helpers/test_service.py +++ b/tests/helpers/test_service.py @@ -125,6 +125,7 @@ def floor_area_mock(hass: HomeAssistant) -> None: picture=None, temperature_entity_id=None, humidity_entity_id=None, + motion_entity_id=None, ) area_in_floor_a = ar.AreaEntry( id="area-a", @@ -135,6 +136,7 @@ def floor_area_mock(hass: HomeAssistant) -> None: picture=None, temperature_entity_id=None, humidity_entity_id=None, + motion_entity_id=None, ) mock_area_registry( hass, @@ -291,6 +293,7 @@ def label_mock(hass: HomeAssistant) -> None: picture=None, temperature_entity_id=None, humidity_entity_id=None, + motion_entity_id=None, ) area_without_labels = ar.AreaEntry( id="area-no-labels", @@ -302,6 +305,7 @@ def label_mock(hass: HomeAssistant) -> None: picture=None, temperature_entity_id=None, humidity_entity_id=None, + motion_entity_id=None, ) mock_area_registry( hass,