From c114ea266626ba3e99a4848ec48535aa7d6323ac Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Tue, 17 Feb 2026 12:31:31 +0100 Subject: [PATCH] Fix warning in Fritz switch tests (#163256) --- tests/components/fritz/test_switch.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/components/fritz/test_switch.py b/tests/components/fritz/test_switch.py index 045369099a5..0e990ed9c39 100644 --- a/tests/components/fritz/test_switch.py +++ b/tests/components/fritz/test_switch.py @@ -290,6 +290,7 @@ async def test_switch_no_profile_entities_list( hass: HomeAssistant, fc_class_mock, fh_class_mock, + fs_class_mock, ) -> None: """Test Fritz!Tools switches with no profile entities.""" @@ -312,6 +313,7 @@ async def test_switch_no_mesh_wifi_uplink( hass: HomeAssistant, fc_class_mock, fh_class_mock, + fs_class_mock, ) -> None: """Test Fritz!Tools switches when no mesh WiFi uplink.""" @@ -330,6 +332,7 @@ async def test_switch_device_no_wan_access( hass: HomeAssistant, fc_class_mock, fh_class_mock, + fs_class_mock, ) -> None: """Test Fritz!Tools switches when device has no WAN access.""" @@ -355,6 +358,7 @@ async def test_switch_device_no_ip_address( hass: HomeAssistant, fc_class_mock, fh_class_mock, + fs_class_mock, ) -> None: """Test Fritz!Tools switches when device has no IP address.""" @@ -398,6 +402,7 @@ async def test_switch_turn_on_off( hass: HomeAssistant, fc_class_mock, fh_class_mock, + fs_class_mock, entity_id: str, wrapper_method: str, state_value: str,