Update aioairzone to v0.8.1 (#122481)
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
parent
e00f159ebe
commit
2730713b39
5 changed files with 5 additions and 5 deletions
|
@ -11,5 +11,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/airzone",
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["aioairzone"],
|
||||
"requirements": ["aioairzone==0.8.0"]
|
||||
"requirements": ["aioairzone==0.8.1"]
|
||||
}
|
||||
|
|
|
@ -179,7 +179,7 @@ aioairq==0.3.2
|
|||
aioairzone-cloud==0.5.4
|
||||
|
||||
# homeassistant.components.airzone
|
||||
aioairzone==0.8.0
|
||||
aioairzone==0.8.1
|
||||
|
||||
# homeassistant.components.ambient_network
|
||||
# homeassistant.components.ambient_station
|
||||
|
|
|
@ -164,7 +164,7 @@ aioairq==0.3.2
|
|||
aioairzone-cloud==0.5.4
|
||||
|
||||
# homeassistant.components.airzone
|
||||
aioairzone==0.8.0
|
||||
aioairzone==0.8.1
|
||||
|
||||
# homeassistant.components.ambient_network
|
||||
# homeassistant.components.ambient_station
|
||||
|
|
|
@ -248,7 +248,7 @@ async def test_airzone_create_climates(hass: HomeAssistant) -> None:
|
|||
),
|
||||
):
|
||||
async_fire_time_changed(hass, utcnow() + SCAN_INTERVAL)
|
||||
await hass.async_block_till_done()
|
||||
await hass.async_block_till_done(wait_background_tasks=True)
|
||||
|
||||
state = hass.states.get("climate.salon")
|
||||
assert state.attributes.get(ATTR_MAX_TEMP) == 25
|
||||
|
|
|
@ -113,7 +113,7 @@ async def test_airzone_sensors_availability(hass: HomeAssistant) -> None:
|
|||
),
|
||||
):
|
||||
async_fire_time_changed(hass, utcnow() + SCAN_INTERVAL)
|
||||
await hass.async_block_till_done()
|
||||
await hass.async_block_till_done(wait_background_tasks=True)
|
||||
|
||||
state = hass.states.get("sensor.dorm_ppal_temperature")
|
||||
assert state.state == STATE_UNAVAILABLE
|
||||
|
|
Loading…
Add table
Reference in a new issue