From e7d5943c907c56937f237ae98a8993d84bdede3d Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 14 Feb 2023 13:58:29 -0600 Subject: [PATCH] Fix zwave_me tests with python 3.11 (#88122) --- tests/components/zwave_me/test_remove_stale_devices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/zwave_me/test_remove_stale_devices.py b/tests/components/zwave_me/test_remove_stale_devices.py index beb09f5eff4..db6c2d1bfad 100644 --- a/tests/components/zwave_me/test_remove_stale_devices.py +++ b/tests/components/zwave_me/test_remove_stale_devices.py @@ -50,7 +50,7 @@ async def test_remove_stale_devices( identifiers={("zwave_me", f"{config_entry.unique_id}-{identifier}")}, ) with patch( - "zwave_me_ws.ZWaveMe.get_connection", + "homeassistant.components.zwave_me.ZWaveMe.get_connection", mock_connection, ), patch( "homeassistant.components.zwave_me.async_setup_platforms",