From ee64aafc3932ea0a7a76a33d1827db0c78fc0ed3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 13 Aug 2020 11:47:18 -0500 Subject: [PATCH] Fix iqvia test patching the wrong integration (#38847) --- tests/components/iqvia/test_config_flow.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/components/iqvia/test_config_flow.py b/tests/components/iqvia/test_config_flow.py index 6b6872d5f67..209f88cf895 100644 --- a/tests/components/iqvia/test_config_flow.py +++ b/tests/components/iqvia/test_config_flow.py @@ -47,9 +47,7 @@ async def test_step_user(hass): """Test that the user step works (without MFA).""" conf = {CONF_ZIP_CODE: "12345"} - with patch( - "homeassistant.components.simplisafe.async_setup_entry", return_value=True - ): + with patch("homeassistant.components.iqvia.async_setup_entry", return_value=True): result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": SOURCE_USER}, data=conf )