Add type hints to integration tests (part 8) (#87982)

This commit is contained in:
epenet
2023-02-13 11:13:48 +01:00
committed by GitHub
parent 575f7c4205
commit 89e4ee5320
50 changed files with 696 additions and 339 deletions

View File

@@ -842,7 +842,7 @@ async def test_group_mixed_domains_off(hass: HomeAssistant) -> None:
(("locked", "locked", "locked"), "locked"),
],
)
async def test_group_locks(hass, states, group_state):
async def test_group_locks(hass: HomeAssistant, states, group_state) -> None:
"""Test group of locks."""
hass.states.async_set("lock.one", states[0])
hass.states.async_set("lock.two", states[1])