Add type hints to integration tests (part 14) (#88005)
This commit is contained in:
parent
a0e0feb444
commit
6c430e03bc
51 changed files with 630 additions and 331 deletions
|
@ -1,11 +1,11 @@
|
|||
"""Test Met Éireann weather entity."""
|
||||
|
||||
from homeassistant.components.met_eireann.const import DOMAIN
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from tests.common import MockConfigEntry
|
||||
|
||||
|
||||
async def test_weather(hass, mock_weather):
|
||||
async def test_weather(hass: HomeAssistant, mock_weather) -> None:
|
||||
"""Test weather entity."""
|
||||
# Create a mock configuration for testing
|
||||
mock_data = MockConfigEntry(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue