From 804fbf9cefc3c0b01eed290b495e149cb9b8be3e Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Thu, 29 Jan 2026 11:51:22 +0100 Subject: [PATCH] Modernize govee_light_local light tests (#161845) --- tests/components/govee_light_local/test_light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/govee_light_local/test_light.py b/tests/components/govee_light_local/test_light.py index 40748c0598e..b5e06e4fd69 100644 --- a/tests/components/govee_light_local/test_light.py +++ b/tests/components/govee_light_local/test_light.py @@ -418,7 +418,7 @@ async def test_light_color(hass: HomeAssistant, mock_govee_api: MagicMock) -> No await hass.services.async_call( LIGHT_DOMAIN, SERVICE_TURN_ON, - {"entity_id": light.entity_id, "kelvin": 4400}, + {"entity_id": light.entity_id, "color_temp_kelvin": 4400}, blocking=True, ) await hass.async_block_till_done()