Fix how homekit_controller enumerates Hue remote (#44019)
This commit is contained in:
parent
faf21e1e1a
commit
109ce653c0
4 changed files with 12 additions and 13 deletions
|
@ -51,16 +51,15 @@ async def test_hue_bridge_setup(hass):
|
|||
]
|
||||
|
||||
for button in ("button1", "button2", "button3", "button4"):
|
||||
for subtype in ("single_press", "double_press", "long_press"):
|
||||
expected.append(
|
||||
{
|
||||
"device_id": device.id,
|
||||
"domain": "homekit_controller",
|
||||
"platform": "device",
|
||||
"type": button,
|
||||
"subtype": subtype,
|
||||
}
|
||||
)
|
||||
expected.append(
|
||||
{
|
||||
"device_id": device.id,
|
||||
"domain": "homekit_controller",
|
||||
"platform": "device",
|
||||
"type": button,
|
||||
"subtype": "single_press",
|
||||
}
|
||||
)
|
||||
|
||||
triggers = await async_get_device_automations(hass, "trigger", device.id)
|
||||
assert_lists_same(triggers, expected)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue