mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Fix GeoNet NZ Quakes tests (#33383)
* enable tests * only remove entity if exists
This commit is contained in:
parent
ad3c5240c2
commit
de54659097
@ -96,7 +96,8 @@ class GeonetnzQuakesEvent(GeolocationEvent):
|
|||||||
self._remove_signal_update()
|
self._remove_signal_update()
|
||||||
# Remove from entity registry.
|
# Remove from entity registry.
|
||||||
entity_registry = await async_get_registry(self.hass)
|
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
|
@callback
|
||||||
def _delete_callback(self):
|
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_update_state_filter_inv"),
|
||||||
("tests.components.dyson.test_fan", "test_purecool_component_setup_only_once"),
|
("tests.components.dyson.test_fan", "test_purecool_component_setup_only_once"),
|
||||||
("tests.components.dyson.test_sensor", "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"),
|
("test_homeassistant_bridge", "test_homeassistant_bridge_fan_setup"),
|
||||||
("tests.components.hue.test_bridge", "test_handle_unauthorized"),
|
("tests.components.hue.test_bridge", "test_handle_unauthorized"),
|
||||||
("tests.components.hue.test_init", "test_security_vuln_check"),
|
("tests.components.hue.test_init", "test_security_vuln_check"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user