This commit is contained in:
Casper 2021-03-09 13:37:10 +01:00 committed by GitHub
parent a58cfb797c
commit 82060dd242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ class HomeAssistantWebSocket(CoreSysAttributes):
and self._client.ha_version < MIN_VERSION[message_type]
):
_LOGGER.info(
"WebSocket command %s is not supported untill core-%s. Ignoring WebSocket message.",
"WebSocket command %s is not supported until core-%s. Ignoring WebSocket message.",
message_type,
MIN_VERSION[message_type],
)

View File

@ -40,7 +40,7 @@ async def test_send_command_old_core_version(coresys: CoreSys, caplog):
)
assert (
"WebSocket command supervisor/event is not supported untill core-2021.2.4"
"WebSocket command supervisor/event is not supported until core-2021.2.4"
in caplog.text
)