From 7b855927e235579c1d537f1b47e9fa002403c686 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 4 Jul 2020 19:33:26 +0200 Subject: [PATCH] Fix flapping google_assistant tests (#37480) --- tests/components/google_assistant/test_report_state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/google_assistant/test_report_state.py b/tests/components/google_assistant/test_report_state.py index 7dd3faba7ab..cd967e6c82e 100644 --- a/tests/components/google_assistant/test_report_state.py +++ b/tests/components/google_assistant/test_report_state.py @@ -8,7 +8,7 @@ from tests.async_mock import AsyncMock, patch from tests.common import async_fire_time_changed -async def test_report_state(hass, caplog): +async def test_report_state(hass, caplog, legacy_patchable_time): """Test report state works.""" hass.states.async_set("light.ceiling", "off") hass.states.async_set("switch.ac", "on")