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

Add missing argument type to core tests (#119667)

This commit is contained in:
epenet
2024-06-14 08:42:01 +02:00
committed by GitHub
parent f3ce562847
commit 9f41133bbc
7 changed files with 23 additions and 17 deletions

View File

@@ -1125,7 +1125,10 @@ CUSTOM_ISSUE_TRACKER = "https://blablabla.com"
],
)
async def test_async_get_issue_tracker(
hass, domain: str | None, module: str | None, issue_tracker: str | None
hass: HomeAssistant,
domain: str | None,
module: str | None,
issue_tracker: str | None,
) -> None:
"""Test async_get_issue_tracker."""
mock_integration(hass, MockModule("bla_built_in"))
@@ -1187,7 +1190,7 @@ async def test_async_get_issue_tracker(
],
)
async def test_async_get_issue_tracker_no_hass(
hass, domain: str | None, module: str | None, issue_tracker: str
hass: HomeAssistant, domain: str | None, module: str | None, issue_tracker: str
) -> None:
"""Test async_get_issue_tracker."""
mock_integration(hass, MockModule("bla_built_in"))
@@ -1220,7 +1223,7 @@ REPORT_CUSTOM_UNKNOWN = "report it to the custom integration author"
],
)
async def test_async_suggest_report_issue(
hass, domain: str | None, module: str | None, report_issue: str
hass: HomeAssistant, domain: str | None, module: str | None, report_issue: str
) -> None:
"""Test async_suggest_report_issue."""
mock_integration(hass, MockModule("bla_built_in"))
@@ -1952,7 +1955,8 @@ async def test_integration_warnings(
assert "configured to to import its code in the event loop" in caplog.text
async def test_has_services(hass: HomeAssistant, enable_custom_integrations) -> None:
@pytest.mark.usefixtures("enable_custom_integrations")
async def test_has_services(hass: HomeAssistant) -> None:
"""Test has_services."""
integration = await loader.async_get_integration(hass, "test")
assert integration.has_services is False