Remove dead code path in devolo Home Network (#85790)

Remove dead code path
This commit is contained in:
Guido Schmitz 2023-01-13 21:15:50 +01:00 committed by GitHub
parent 67716edb0c
commit c191daedc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 27 deletions

View File

@ -88,8 +88,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
return await device.device.async_get_led_setting() return await device.device.async_get_led_setting()
except DeviceUnavailable as err: except DeviceUnavailable as err:
raise UpdateFailed(err) from err raise UpdateFailed(err) from err
except DevicePasswordProtected as err:
raise ConfigEntryAuthFailed(err) from err
async def async_update_wifi_connected_station() -> list[ConnectedStationInfo]: async def async_update_wifi_connected_station() -> list[ConnectedStationInfo]:
"""Fetch data from API endpoint.""" """Fetch data from API endpoint."""

View File

@ -70,31 +70,6 @@ async def test_update_guest_wifi_status_auth_failed(
await hass.config_entries.async_unload(entry.entry_id) await hass.config_entries.async_unload(entry.entry_id)
async def test_update_led_status_auth_failed(
hass: HomeAssistant, mock_device: MockDevice
):
"""Test getting the led status with wrong password triggers the reauth flow."""
entry = configure_integration(hass)
mock_device.device.async_get_led_setting.side_effect = DevicePasswordProtected
await hass.config_entries.async_setup(entry.entry_id)
await hass.async_block_till_done()
assert entry.state is ConfigEntryState.SETUP_ERROR
flows = hass.config_entries.flow.async_progress()
assert len(flows) == 1
flow = flows[0]
assert flow["step_id"] == "reauth_confirm"
assert flow["handler"] == DOMAIN
assert "context" in flow
assert flow["context"]["source"] == SOURCE_REAUTH
assert flow["context"]["entry_id"] == entry.entry_id
await hass.config_entries.async_unload(entry.entry_id)
async def test_update_enable_guest_wifi(hass: HomeAssistant, mock_device: MockDevice): async def test_update_enable_guest_wifi(hass: HomeAssistant, mock_device: MockDevice):
"""Test state change of a enable_guest_wifi switch device.""" """Test state change of a enable_guest_wifi switch device."""
entry = configure_integration(hass) entry = configure_integration(hass)