From 70f4bdf63ed6668823bd5769b6793402cec47ed3 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 4 Oct 2021 15:09:42 +0200 Subject: [PATCH] Prevent opening of sockets in watttime tests (#57040) --- tests/components/watttime/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/watttime/test_config_flow.py b/tests/components/watttime/test_config_flow.py index a3d2867eb2d..efee2429d59 100644 --- a/tests/components/watttime/test_config_flow.py +++ b/tests/components/watttime/test_config_flow.py @@ -81,7 +81,7 @@ async def test_duplicate_error(hass: HomeAssistant, client_login): assert result["reason"] == "already_configured" -async def test_show_form_coordinates(hass: HomeAssistant) -> None: +async def test_show_form_coordinates(hass: HomeAssistant, client_login) -> None: """Test showing the form to input custom latitude/longitude.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": config_entries.SOURCE_USER}