Fix groups reporting incorrect supported color modes (#53088)
This commit is contained in:
parent
bf831267cf
commit
c96f01df1f
4 changed files with 15 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
|||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/deconz",
|
||||
"requirements": [
|
||||
"pydeconz==81"
|
||||
"pydeconz==82"
|
||||
],
|
||||
"ssdp": [
|
||||
{
|
||||
|
|
|
@ -1370,7 +1370,7 @@ pydaikin==2.4.4
|
|||
pydanfossair==0.1.0
|
||||
|
||||
# homeassistant.components.deconz
|
||||
pydeconz==81
|
||||
pydeconz==82
|
||||
|
||||
# homeassistant.components.delijn
|
||||
pydelijn==0.6.1
|
||||
|
|
|
@ -765,7 +765,7 @@ pycoolmasternet-async==0.1.2
|
|||
pydaikin==2.4.4
|
||||
|
||||
# homeassistant.components.deconz
|
||||
pydeconz==81
|
||||
pydeconz==82
|
||||
|
||||
# homeassistant.components.dexcom
|
||||
pydexcom==0.2.0
|
||||
|
|
|
@ -742,7 +742,18 @@ async def test_groups(hass, aioclient_mock, input, expected):
|
|||
"name": "Group",
|
||||
"type": "LightGroup",
|
||||
"state": {"all_on": False, "any_on": True},
|
||||
"action": {},
|
||||
"action": {
|
||||
"alert": "none",
|
||||
"bri": 127,
|
||||
"colormode": "hs",
|
||||
"ct": 0,
|
||||
"effect": "none",
|
||||
"hue": 0,
|
||||
"on": True,
|
||||
"sat": 127,
|
||||
"scene": None,
|
||||
"xy": [0, 0],
|
||||
},
|
||||
"scenes": [],
|
||||
"lights": input["lights"],
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue