From a18dff27881c184c14577866c36ceadefdc86cb0 Mon Sep 17 00:00:00 2001
From: "firstof9@gmail.com" <firstof9@gmail.com>
Date: Sat, 6 Jul 2024 14:56:48 -0700
Subject: [PATCH] add missing step to test

---
 tests/test_config_flow.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/test_config_flow.py b/tests/test_config_flow.py
index 9ef36826..ca5a033b 100644
--- a/tests/test_config_flow.py
+++ b/tests/test_config_flow.py
@@ -1689,6 +1689,10 @@ async def test_reconfigure(
     assert result["step_id"] == step_id_3
     result = await hass.config_entries.flow.async_configure(result["flow_id"], input_3)
 
+    assert result["type"] == "form"
+    assert result["step_id"] == step_id_4
+    result = await hass.config_entries.flow.async_configure(result["flow_id"], input_4)
+
     assert result["type"] is FlowResultType.ABORT
     assert result["reason"] == "reconfigure_successful"
     await hass.async_block_till_done()