mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 02:49:40 +00:00
Add type hints to integration tests (part 8) (#87982)
This commit is contained in:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user