1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Typofix exsist -> exist (#2491)

* Typofix exsist -> exist

* Typofix exist -> exists
This commit is contained in:
Wouter Schoot
2021-02-01 09:34:17 +01:00
committed by GitHub
parent 17f62b6e86
commit 509a37fc04
4 changed files with 4 additions and 4 deletions

View File

@@ -155,7 +155,7 @@ async def test_api_network_interface_update_invalid(api_client):
"""Test network manager api."""
resp = await api_client.post("/network/interface/invalid/update", json={})
result = await resp.json()
assert result["message"] == "Interface invalid does not exsist"
assert result["message"] == "Interface invalid does not exist"
resp = await api_client.post(f"/network/interface/{TEST_INTERFACE}/update", json={})
result = await resp.json()