Fix ezviz test timeout (#148066)

This commit is contained in:
Franck Nijhof
2025-07-03 23:11:54 +02:00
committed by GitHub
parent 11c75d7ef2
commit 49d1d781b8

View File

@@ -129,6 +129,7 @@ async def test_async_step_reauth(
CONF_PASSWORD: "test-password", CONF_PASSWORD: "test-password",
}, },
) )
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful" assert result["reason"] == "reauth_successful"
@@ -639,6 +640,7 @@ async def test_reauth_errors(
CONF_PASSWORD: "test-password", CONF_PASSWORD: "test-password",
}, },
) )
await hass.async_block_till_done()
assert result["type"] is FlowResultType.ABORT assert result["type"] is FlowResultType.ABORT
assert result["reason"] == "reauth_successful" assert result["reason"] == "reauth_successful"