From 496f78bae5f475dfc44c571893d9a612ae0b63a1 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Sun, 6 Nov 2022 21:37:44 +0200 Subject: [PATCH] FIX: patch correct async_setup_entry in tilt_ble (#81671) --- tests/components/tilt_ble/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/tilt_ble/test_config_flow.py b/tests/components/tilt_ble/test_config_flow.py index c2bb20e0dd6..789bb86e30c 100644 --- a/tests/components/tilt_ble/test_config_flow.py +++ b/tests/components/tilt_ble/test_config_flow.py @@ -21,7 +21,7 @@ async def test_async_step_bluetooth_valid_device(hass): assert result["type"] == FlowResultType.FORM assert result["step_id"] == "bluetooth_confirm" with patch( - "homeassistant.components.govee_ble.async_setup_entry", return_value=True + "homeassistant.components.tilt_ble.async_setup_entry", return_value=True ): result2 = await hass.config_entries.flow.async_configure( result["flow_id"], user_input={}