Skip to content

Commit

Permalink
fix: ignore minor_version in config flow test
Browse files Browse the repository at this point in the history
  • Loading branch information
argoyle committed Jan 9, 2024
1 parent ccdd5a2 commit c526d96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ async def test_flow_user_creates_config_entry(hass, mqtt_mock):
"result": mock.ANY,
}

assert expected == {k: v for k, v in result.items() if k != "context"}
assert expected == {
k: v for k, v in result.items() if k != "context" and k != "minor_version"
}
await hass.async_block_till_done()


Expand Down

0 comments on commit c526d96

Please sign in to comment.