From 03bb791080ed7486a0a5feeda66b125d55d2624c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 15 Mar 2024 12:31:55 -1000 Subject: [PATCH] Add missing async_block_till_done to jellyfin test_invalid_auth test (#113556) This fix was reverted out in #113553 --- tests/components/jellyfin/test_init.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/components/jellyfin/test_init.py b/tests/components/jellyfin/test_init.py index 9bfe37f9874..6e6a0f7219b 100644 --- a/tests/components/jellyfin/test_init.py +++ b/tests/components/jellyfin/test_init.py @@ -67,6 +67,7 @@ async def test_invalid_auth( mock_config_entry.add_to_hass(hass) assert not await hass.config_entries.async_setup(mock_config_entry.entry_id) + await hass.async_block_till_done() flows = hass.config_entries.flow.async_progress() assert len(flows) == 1