diff --git a/tests/components/bluetooth/test_manager.py b/tests/components/bluetooth/test_manager.py index 2542b88cef3..0454df9a4a7 100644 --- a/tests/components/bluetooth/test_manager.py +++ b/tests/components/bluetooth/test_manager.py @@ -1346,7 +1346,7 @@ async def test_set_fallback_interval_big(hass: HomeAssistant) -> None: async def test_bluetooth_rediscover( hass: HomeAssistant, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, ) -> None: """Test we reinitiate flows when an ignored config entry is removed.""" @@ -1524,7 +1524,7 @@ async def test_bluetooth_rediscover( async def test_bluetooth_rediscover_no_match( hass: HomeAssistant, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, entry_unique_id: str, ) -> None: diff --git a/tests/components/config/test_config_entries.py b/tests/components/config/test_config_entries.py index b55644579e9..1b0e9dc7402 100644 --- a/tests/components/config/test_config_entries.py +++ b/tests/components/config/test_config_entries.py @@ -1338,7 +1338,7 @@ async def test_ignore_flow( hass: HomeAssistant, hass_ws_client: WebSocketGenerator, flow_context: dict, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], ) -> None: """Test we can ignore a flow.""" assert await async_setup_component(hass, "config", {}) diff --git a/tests/components/dhcp/test_init.py b/tests/components/dhcp/test_init.py index c5dbba43c91..478b32940a8 100644 --- a/tests/components/dhcp/test_init.py +++ b/tests/components/dhcp/test_init.py @@ -1212,7 +1212,7 @@ async def test_aiodiscover_finds_new_hosts_after_interval(hass: HomeAssistant) - async def test_dhcp_rediscover( hass: HomeAssistant, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, ) -> None: """Test we reinitiate flows when an ignored config entry is removed.""" @@ -1303,7 +1303,7 @@ async def test_dhcp_rediscover( async def test_dhcp_rediscover_no_match( hass: HomeAssistant, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, entry_unique_id: str, ) -> None: diff --git a/tests/components/ssdp/test_init.py b/tests/components/ssdp/test_init.py index aa8d0234246..7dc0f0095d4 100644 --- a/tests/components/ssdp/test_init.py +++ b/tests/components/ssdp/test_init.py @@ -952,7 +952,7 @@ async def test_ssdp_rediscover( aioclient_mock: AiohttpClientMocker, mock_flow_init, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, ) -> None: """Test we reinitiate flows when an ignored config entry is removed.""" @@ -1048,7 +1048,7 @@ async def test_ssdp_rediscover_no_match( hass: HomeAssistant, mock_flow_init, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, entry_unique_id: str, ) -> None: diff --git a/tests/components/zeroconf/test_init.py b/tests/components/zeroconf/test_init.py index 103b2f609e0..be78964f231 100644 --- a/tests/components/zeroconf/test_init.py +++ b/tests/components/zeroconf/test_init.py @@ -1467,7 +1467,7 @@ async def test_zeroconf_removed(hass: HomeAssistant) -> None: async def test_zeroconf_rediscover( hass: HomeAssistant, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, ) -> None: """Test we reinitiate flows when an ignored config entry is removed.""" @@ -1583,7 +1583,7 @@ async def test_zeroconf_rediscover( async def test_zeroconf_rediscover_no_match( hass: HomeAssistant, entry_domain: str, - entry_discovery_keys: tuple, + entry_discovery_keys: dict[str, tuple[DiscoveryKey, ...]], entry_source: str, entry_unique_id: str, ) -> None: