mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Add type hints to integration tests (part 12) (#87997)
This commit is contained in:
@@ -16,7 +16,7 @@ from .conftest import KNXTestKit
|
||||
from tests.common import async_capture_events, async_fire_time_changed
|
||||
|
||||
|
||||
async def test_button_simple(hass: HomeAssistant, knx: KNXTestKit):
|
||||
async def test_button_simple(hass: HomeAssistant, knx: KNXTestKit) -> None:
|
||||
"""Test KNX button with default payload."""
|
||||
events = async_capture_events(hass, "state_changed")
|
||||
await knx.setup_integration(
|
||||
@@ -53,7 +53,7 @@ async def test_button_simple(hass: HomeAssistant, knx: KNXTestKit):
|
||||
await knx.assert_telegram_count(0)
|
||||
|
||||
|
||||
async def test_button_raw(hass: HomeAssistant, knx: KNXTestKit):
|
||||
async def test_button_raw(hass: HomeAssistant, knx: KNXTestKit) -> None:
|
||||
"""Test KNX button with raw payload."""
|
||||
await knx.setup_integration(
|
||||
{
|
||||
@@ -72,7 +72,7 @@ async def test_button_raw(hass: HomeAssistant, knx: KNXTestKit):
|
||||
await knx.assert_write("1/2/3", False)
|
||||
|
||||
|
||||
async def test_button_type(hass: HomeAssistant, knx: KNXTestKit):
|
||||
async def test_button_type(hass: HomeAssistant, knx: KNXTestKit) -> None:
|
||||
"""Test KNX button with encoded payload."""
|
||||
await knx.setup_integration(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user