Fix patch of PLATFORMS constant in netatmo (#101038)

This commit is contained in:
Erik Montnemery 2023-09-29 16:30:33 +02:00 committed by GitHub
parent b8a7ad916a
commit 50827405d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 8 deletions

View file

@ -92,7 +92,11 @@ async def simulate_webhook(hass, webhook_id, response):
@contextmanager
def selected_platforms(platforms):
"""Restrict loaded platforms to list given."""
with patch("homeassistant.components.netatmo.PLATFORMS", platforms), patch(
with patch(
"homeassistant.components.netatmo.data_handler.PLATFORMS", platforms
), patch(
"homeassistant.helpers.config_entry_oauth2_flow.async_get_config_entry_implementation",
), patch("homeassistant.components.netatmo.webhook_generate_url"):
), patch(
"homeassistant.components.netatmo.webhook_generate_url"
):
yield