1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-22 20:09:35 +00:00

Support STATE_AUTO in homekit_controller climate (#23583)

This commit is contained in:
Jc2k
2019-05-02 04:44:55 +01:00
committed by Andrew Sayre
parent 75abfd49ef
commit 0fe21f2015
4 changed files with 19 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ async def test_climate_respect_supported_op_modes_2(hass, utcnow):
service = FakeService('public.hap.service.thermostat')
char = service.add_characteristic('heating-cooling.target')
char.value = 0
char.validValues = [0, 1, 2]
char.valid_values = [0, 1, 2]
helper = await setup_test_component(hass, [service])