Skip to content

Commit

Permalink
Fix formatting of mac addresses from dhcp discovery mocking in verisu…
Browse files Browse the repository at this point in the history
…re (#110611)

dhcp returns addresses in lowercase without :
  • Loading branch information
bdraco authored Feb 14, 2024
1 parent e6ac4c5 commit 2a04eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/components/verisure/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ async def test_dhcp(hass: HomeAssistant) -> None:
result = await hass.config_entries.flow.async_init(
DOMAIN,
data=dhcp.DhcpServiceInfo(
ip="1.2.3.4", macaddress="01:23:45:67:89:ab", hostname="mock_hostname"
ip="1.2.3.4", macaddress="0123456789ab", hostname="mock_hostname"
),
context={"source": config_entries.SOURCE_DHCP},
)
Expand Down

0 comments on commit 2a04eab

Please sign in to comment.