diff --git a/homeassistant/components/hassio/system_health.py b/homeassistant/components/hassio/system_health.py index 4be94f89218..5ce38b0e121 100644 --- a/homeassistant/components/hassio/system_health.py +++ b/homeassistant/components/hassio/system_health.py @@ -30,7 +30,6 @@ async def system_health_info(hass: HomeAssistant): healthy = { "type": "failed", "error": "Unhealthy", - "more_info": "/hassio/system", } if supervisor_info.get("supported"): @@ -39,7 +38,6 @@ async def system_health_info(hass: HomeAssistant): supported = { "type": "failed", "error": "Unsupported", - "more_info": "/hassio/system", } information = { @@ -63,7 +61,6 @@ async def system_health_info(hass: HomeAssistant): information["version_api"] = system_health.async_check_can_reach_url( hass, f"https://version.home-assistant.io/{info.get('channel')}.json", - "/hassio/system", ) information["installed_addons"] = ", ".join( diff --git a/tests/components/hassio/test_system_health.py b/tests/components/hassio/test_system_health.py index 8fa610b5442..dcf18f7bc13 100644 --- a/tests/components/hassio/test_system_health.py +++ b/tests/components/hassio/test_system_health.py @@ -98,16 +98,13 @@ async def test_hassio_system_health_with_issues(hass, aioclient_mock): assert info["healthy"] == { "error": "Unhealthy", - "more_info": "/hassio/system", "type": "failed", } assert info["supported"] == { "error": "Unsupported", - "more_info": "/hassio/system", "type": "failed", } assert info["version_api"] == { "error": "unreachable", - "more_info": "/hassio/system", "type": "failed", }