Skip to content

Commit

Permalink
add missing step to test
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 committed Jul 6, 2024
1 parent b8cc06d commit a18dff2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a18dff2

Please sign in to comment.