Skip to content

Commit

Permalink
Migrate homekit light tests to use Kelvin (#133011)
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet authored Dec 12, 2024
1 parent 37f2bde commit 839312c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/components/homekit/test_type_lights.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
ATTR_COLOR_MODE,
ATTR_COLOR_TEMP_KELVIN,
ATTR_HS_COLOR,
ATTR_MAX_MIREDS,
ATTR_MIN_MIREDS,
ATTR_MAX_COLOR_TEMP_KELVIN,
ATTR_MIN_COLOR_TEMP_KELVIN,
ATTR_RGB_COLOR,
ATTR_RGBW_COLOR,
ATTR_RGBWW_COLOR,
Expand Down Expand Up @@ -1391,8 +1391,8 @@ async def test_light_min_max_mireds(hass: HomeAssistant, hk_driver) -> None:
{
ATTR_SUPPORTED_COLOR_MODES: [ColorMode.COLOR_TEMP],
ATTR_BRIGHTNESS: 255,
ATTR_MAX_MIREDS: 500.5,
ATTR_MIN_MIREDS: 153.5,
ATTR_MIN_COLOR_TEMP_KELVIN: 1999,
ATTR_MAX_COLOR_TEMP_KELVIN: 6499,
},
)
await hass.async_block_till_done()
Expand Down

0 comments on commit 839312c

Please sign in to comment.