diff --git a/tests/components/wake_on_lan/test_switch.py b/tests/components/wake_on_lan/test_switch.py index b6747062ce5..4eae15911c2 100644 --- a/tests/components/wake_on_lan/test_switch.py +++ b/tests/components/wake_on_lan/test_switch.py @@ -101,16 +101,6 @@ class TestWolSwitch(unittest.TestCase): state = self.hass.states.get("switch.wake_on_lan") assert STATE_ON == state.state - @patch("wakeonlan.send_magic_packet", new=send_magic_packet) - @patch("subprocess.call", new=call) - def test_minimal_config(self): - """Test with minimal config.""" - assert setup_component( - self.hass, - switch.DOMAIN, - {"switch": {"platform": "wake_on_lan", "mac": "00-01-02-03-04-05"}}, - ) - @patch("wakeonlan.send_magic_packet", new=send_magic_packet) @patch("subprocess.call", new=call) def test_broadcast_config_ip_and_port(self):