From 299713e7a32b483927b142716c66f79868ee9c0c Mon Sep 17 00:00:00 2001 From: jbouwh Date: Wed, 25 Jun 2025 07:17:38 +0000 Subject: [PATCH] Fix test --- tests/components/mqtt/test_config_flow.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/components/mqtt/test_config_flow.py b/tests/components/mqtt/test_config_flow.py index f5a4bb52d87..610e89cfd77 100644 --- a/tests/components/mqtt/test_config_flow.py +++ b/tests/components/mqtt/test_config_flow.py @@ -4245,9 +4245,7 @@ async def test_subentry_reconfigure_export_settings( subentry_id: str subentry: ConfigSubentry subentry_id, subentry = next(iter(config_entry.subentries.items())) - result = await config_entry.start_subentry_reconfigure_flow( - hass, "device", subentry_id - ) + result = await config_entry.start_subentry_reconfigure_flow(hass, subentry_id) assert result["type"] is FlowResultType.MENU assert result["step_id"] == "summary_menu"