1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Bump to aiohttp 3.8.0 (#58974)

This commit is contained in:
J. Nick Koston
2021-11-04 10:07:50 -05:00
committed by GitHub
parent 23cb396aad
commit 10d6247fee
106 changed files with 221 additions and 142 deletions

View File

@@ -858,7 +858,7 @@ async def test_wait_basic_times_out(hass, action_type):
assert script_obj.last_action == wait_alias
hass.states.async_set("switch.test", "not_on")
with timeout(0.1):
async with timeout(0.1):
await hass.async_block_till_done()
except asyncio.TimeoutError:
timed_out = True
@@ -1238,7 +1238,7 @@ async def test_wait_template_with_utcnow_no_match(hass):
):
async_fire_time_changed(hass, second_non_matching_time)
with timeout(0.1):
async with timeout(0.1):
await hass.async_block_till_done()
except asyncio.TimeoutError:
timed_out = True