diff --git a/tests/components/upnp/test_init.py b/tests/components/upnp/test_init.py index 86ed017ae8d..4aa033ee07b 100644 --- a/tests/components/upnp/test_init.py +++ b/tests/components/upnp/test_init.py @@ -19,6 +19,7 @@ class MockDevice(Device): device = MagicMock() device.manufacturer = "mock-manuf" device.name = "mock-name" + device.model_name = "mock-model-name" super().__init__(device) self._udn = udn self.added_port_mappings = [] diff --git a/tests/ignore_uncaught_exceptions.py b/tests/ignore_uncaught_exceptions.py index 6f7910f9120..f0a47b3e64f 100644 --- a/tests/ignore_uncaught_exceptions.py +++ b/tests/ignore_uncaught_exceptions.py @@ -57,11 +57,6 @@ IGNORE_UNCAUGHT_EXCEPTIONS = [ "test_configuring_devices_from_multiple_sources", ), ("tests.components.unifi_direct.test_device_tracker", "test_get_scanner"), - ("tests.components.upnp.test_init", "test_async_setup_entry_default"), - ("tests.components.upnp.test_init", "test_async_setup_entry_port_mapping"), - ("tests.components.yr.test_sensor", "test_default_setup"), - ("tests.components.yr.test_sensor", "test_custom_setup"), - ("tests.components.yr.test_sensor", "test_forecast_setup"), ("tests.components.zwave.test_init", "test_power_schemes"), ]