Fix GeoNet NZ Quakes tests (#33383)
* enable tests * only remove entity if exists
This commit is contained in:
parent
ad3c5240c2
commit
de54659097
2 changed files with 2 additions and 3 deletions
|
@ -96,7 +96,8 @@ class GeonetnzQuakesEvent(GeolocationEvent):
|
|||
self._remove_signal_update()
|
||||
# Remove from entity registry.
|
||||
entity_registry = await async_get_registry(self.hass)
|
||||
entity_registry.async_remove(self.entity_id)
|
||||
if self.entity_id in entity_registry.entities:
|
||||
entity_registry.async_remove(self.entity_id)
|
||||
|
||||
@callback
|
||||
def _delete_callback(self):
|
||||
|
|
|
@ -51,8 +51,6 @@ IGNORE_UNCAUGHT_EXCEPTIONS = [
|
|||
("tests.components.dyson.test_fan", "test_purecool_update_state_filter_inv"),
|
||||
("tests.components.dyson.test_fan", "test_purecool_component_setup_only_once"),
|
||||
("tests.components.dyson.test_sensor", "test_purecool_component_setup_only_once"),
|
||||
("tests.components.geonetnz_quakes.test_geo_location", "test_setup"),
|
||||
("tests.components.geonetnz_quakes.test_sensor", "test_setup"),
|
||||
("test_homeassistant_bridge", "test_homeassistant_bridge_fan_setup"),
|
||||
("tests.components.hue.test_bridge", "test_handle_unauthorized"),
|
||||
("tests.components.hue.test_init", "test_security_vuln_check"),
|
||||
|
|
Loading…
Add table
Reference in a new issue