mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 18:39:30 +00:00
Drop MQTT import flow (#66160)
* Drop MQTT import flow * Reload manually configured MQTT entities when config entry is setup * Address review comments * Actually remove the import flow
This commit is contained in:
@@ -19,6 +19,7 @@ from .test_common import (
|
||||
help_test_discovery_update,
|
||||
help_test_discovery_update_unchanged,
|
||||
help_test_reloadable,
|
||||
help_test_reloadable_late,
|
||||
help_test_unique_id,
|
||||
)
|
||||
|
||||
@@ -183,3 +184,10 @@ async def test_reloadable(hass, mqtt_mock, caplog, tmp_path):
|
||||
domain = scene.DOMAIN
|
||||
config = DEFAULT_CONFIG[domain]
|
||||
await help_test_reloadable(hass, mqtt_mock, caplog, tmp_path, domain, config)
|
||||
|
||||
|
||||
async def test_reloadable_late(hass, mqtt_client_mock, caplog, tmp_path):
|
||||
"""Test reloading the MQTT platform with late entry setup."""
|
||||
domain = scene.DOMAIN
|
||||
config = DEFAULT_CONFIG[domain]
|
||||
await help_test_reloadable_late(hass, caplog, tmp_path, domain, config)
|
||||
|
||||
Reference in New Issue
Block a user