From 165b76c960f0161c3428d5ec0955b7cc5dd249e8 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 30 Aug 2026 15:20:45 +0200 Subject: [PATCH] Split the Color Extractor user flow init from its data (#180799) --- tests/components/color_extractor/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/color_extractor/test_config_flow.py b/tests/components/color_extractor/test_config_flow.py index 972b78b3f596..e1d8619056a6 100644 --- a/tests/components/color_extractor/test_config_flow.py +++ b/tests/components/color_extractor/test_config_flow.py @@ -42,7 +42,7 @@ async def test_single_instance_allowed(hass: HomeAssistant) -> None: mock_config_entry.add_to_hass(hass) result = await hass.config_entries.flow.async_init( - DOMAIN, context={"source": SOURCE_USER}, data={} + DOMAIN, context={"source": SOURCE_USER} ) assert result.get("type") is FlowResultType.ABORT