1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Add type hints to integration tests (part 3) (#87844)

This commit is contained in:
epenet
2023-02-10 16:05:01 +01:00
committed by GitHub
parent 22bfb99db4
commit fa7acb4f0d
50 changed files with 745 additions and 386 deletions

View File

@@ -166,7 +166,9 @@ async def test_get_services_error(hass: HomeAssistant) -> None:
assert account_link.DATA_SERVICES not in hass.data
async def test_implementation(hass, flow_handler, current_request_with_host):
async def test_implementation(
hass: HomeAssistant, flow_handler, current_request_with_host: None
) -> None:
"""Test Cloud OAuth2 implementation."""
hass.data["cloud"] = None