Skip to content

Commit

Permalink
Fix OTBR tests on RC (#96966)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Jul 20, 2023
1 parent 55e5947 commit 7389fea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/components/otbr/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,15 +261,15 @@ async def test_hassio_discovery_flow_yellow(
}

assert result["type"] == FlowResultType.CREATE_ENTRY
assert result["title"] == "Home Assistant Yellow"
assert result["title"] == "Home Assistant Yellow (Silicon Labs Multiprotocol)"
assert result["data"] == expected_data
assert result["options"] == {}
assert len(mock_setup_entry.mock_calls) == 1

config_entry = hass.config_entries.async_entries(otbr.DOMAIN)[0]
assert config_entry.data == expected_data
assert config_entry.options == {}
assert config_entry.title == "Home Assistant Yellow"
assert config_entry.title == "Home Assistant Yellow (Silicon Labs Multiprotocol)"
assert config_entry.unique_id == HASSIO_DATA.uuid


Expand Down

0 comments on commit 7389fea

Please sign in to comment.