From e477e94ddd5dcf0ab4e766f8249f33451ae544d1 Mon Sep 17 00:00:00 2001
From: Paulus Schoutsen <balloob@gmail.com>
Date: Mon, 9 Nov 2020 10:45:17 +0100
Subject: [PATCH] Fix flaky epson CI (#42999)

---
 tests/components/epson/test_config_flow.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/components/epson/test_config_flow.py b/tests/components/epson/test_config_flow.py
index 4353971c669..6faaa285a2a 100644
--- a/tests/components/epson/test_config_flow.py
+++ b/tests/components/epson/test_config_flow.py
@@ -61,6 +61,9 @@ async def test_import(hass):
     with patch(
         "homeassistant.components.epson.Projector.get_property",
         return_value="04",
+    ), patch("homeassistant.components.epson.async_setup", return_value=True), patch(
+        "homeassistant.components.epson.async_setup_entry",
+        return_value=True,
     ):
         result = await hass.config_entries.flow.async_init(
             DOMAIN,
-- 
GitLab