From f52a362f2037fca8b61e0010b0bc9b1845addc83 Mon Sep 17 00:00:00 2001 From: abmantis Date: Tue, 15 Jul 2025 19:38:36 +0100 Subject: [PATCH] Cleanup comments --- tests/components/light/test_trigger.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/components/light/test_trigger.py b/tests/components/light/test_trigger.py index 815517e0328..9d5e38bd9e8 100644 --- a/tests/components/light/test_trigger.py +++ b/tests/components/light/test_trigger.py @@ -53,7 +53,7 @@ async def target_lights(hass: HomeAssistant) -> None: mock_device_registry(hass, {device.id: device}) entity_reg = er.async_get(hass) - # Light associated with area (via area_id) + # Light associated with area light_area = entity_reg.async_get_or_create( domain="light", platform="test", @@ -62,7 +62,7 @@ async def target_lights(hass: HomeAssistant) -> None: ) entity_reg.async_update_entity(light_area.entity_id, area_id=area.id) - # Light associated with device (via device_id) + # Light associated with device entity_reg.async_get_or_create( domain="light", platform="test", @@ -71,7 +71,7 @@ async def target_lights(hass: HomeAssistant) -> None: device_id=device.id, ) - # Light associated with label (via entity label) + # Light associated with label light_label = entity_reg.async_get_or_create( domain="light", platform="test",