From 3ac376ebca0fa3cc92eba0d1d0184d7af4b930a2 Mon Sep 17 00:00:00 2001 From: Ohad Levy Date: Thu, 28 May 2020 00:07:30 +0300 Subject: [PATCH] Fix hassio log message typo (#36194) minor contribution - thanks for HA :) --- homeassistant/components/hassio/__init__.py | 2 +- tests/components/hassio/test_init.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/hassio/__init__.py b/homeassistant/components/hassio/__init__.py index 6a383e28ff1..bb4663a9654 100644 --- a/homeassistant/components/hassio/__init__.py +++ b/homeassistant/components/hassio/__init__.py @@ -188,7 +188,7 @@ async def async_setup(hass, config): hass.data[DOMAIN] = hassio = HassIO(hass.loop, websession, host) if not await hassio.is_connected(): - _LOGGER.warning("Not connected with Hass.io / system to busy!") + _LOGGER.warning("Not connected with Hass.io / system too busy!") store = hass.helpers.storage.Store(STORAGE_VERSION, STORAGE_KEY) data = await store.async_load() diff --git a/tests/components/hassio/test_init.py b/tests/components/hassio/test_init.py index c3110b6599c..d0043747835 100644 --- a/tests/components/hassio/test_init.py +++ b/tests/components/hassio/test_init.py @@ -215,7 +215,7 @@ async def test_warn_when_cannot_connect(hass, caplog): assert result assert hass.components.hassio.is_hassio() - assert "Not connected with Hass.io / system to busy!" in caplog.text + assert "Not connected with Hass.io / system too busy!" in caplog.text async def test_service_register(hassio_env, hass):