From c03832da6381884179b2b7d56d640688a6b6ae1e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" <nick@koston.org> Date: Sat, 4 Jul 2020 09:55:44 -0500 Subject: [PATCH] Fix entity_component test flapping (#37445) --- tests/helpers/test_entity_component.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/test_entity_component.py b/tests/helpers/test_entity_component.py index 8935b25830e..05361fe2006 100644 --- a/tests/helpers/test_entity_component.py +++ b/tests/helpers/test_entity_component.py @@ -171,7 +171,7 @@ async def test_extract_from_service_available_device(hass): ) -async def test_platform_not_ready(hass): +async def test_platform_not_ready(hass, legacy_patchable_time): """Test that we retry when platform not ready.""" platform1_setup = Mock(side_effect=[PlatformNotReady, PlatformNotReady, None]) mock_integration(hass, MockModule("mod1")) -- GitLab