From dd7de48efc350ddab9ae048107773c730d67dbda Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Mon, 17 Apr 2023 10:36:13 +0200 Subject: [PATCH] Fix lingering timers in sia tests (#91407) --- tests/components/sia/test_config_flow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/components/sia/test_config_flow.py b/tests/components/sia/test_config_flow.py index 096ff4cf02f..ef252991d7c 100644 --- a/tests/components/sia/test_config_flow.py +++ b/tests/components/sia/test_config_flow.py @@ -328,6 +328,7 @@ async def test_options_basic(hass: HomeAssistant) -> None: updated = await hass.config_entries.options.async_configure( result["flow_id"], BASIC_OPTIONS ) + await hass.async_block_till_done() assert updated["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY assert updated["data"] == { CONF_ACCOUNTS: {BASIC_CONFIG[CONF_ACCOUNT]: BASIC_OPTIONS}