Add type hints to integration tests (part 13) (#87998)
This commit is contained in:
parent
c557cd2b1e
commit
ea11a30a35
53 changed files with 798 additions and 404 deletions
|
@ -16,7 +16,7 @@ from .conftest import setup_integration
|
|||
SELECT_ENTITY_ID = "select.test_clean_cycle_wait_time_minutes"
|
||||
|
||||
|
||||
async def test_wait_time_select(hass: HomeAssistant, mock_account):
|
||||
async def test_wait_time_select(hass: HomeAssistant, mock_account) -> None:
|
||||
"""Tests the wait time select entity."""
|
||||
await setup_integration(hass, mock_account, PLATFORM_DOMAIN)
|
||||
|
||||
|
@ -45,7 +45,7 @@ async def test_wait_time_select(hass: HomeAssistant, mock_account):
|
|||
assert mock_account.robots[0].set_wait_time.call_count == count
|
||||
|
||||
|
||||
async def test_invalid_wait_time_select(hass: HomeAssistant, mock_account):
|
||||
async def test_invalid_wait_time_select(hass: HomeAssistant, mock_account) -> None:
|
||||
"""Tests the wait time select entity with invalid value."""
|
||||
await setup_integration(hass, mock_account, PLATFORM_DOMAIN)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue