Fix formatting of mac addresses from dhcp discovery mocking in tailwind (#110606)
dhcp returns addresses in lowercase without :
This commit is contained in:
parent
334c177e67
commit
48cd973c62
1 changed files with 2 additions and 2 deletions
|
@ -400,7 +400,7 @@ async def test_dhcp_discovery_updates_entry(
|
|||
data=DhcpServiceInfo(
|
||||
hostname="tailwind-3ce90e6d2184.local.",
|
||||
ip="127.0.0.1",
|
||||
macaddress="3c:e9:0e:6d:21:84",
|
||||
macaddress="3ce90e6d2184",
|
||||
),
|
||||
)
|
||||
|
||||
|
@ -420,7 +420,7 @@ async def test_dhcp_discovery_ignores_unknown(hass: HomeAssistant) -> None:
|
|||
data=DhcpServiceInfo(
|
||||
hostname="tailwind-3ce90e6d2184.local.",
|
||||
ip="127.0.0.1",
|
||||
macaddress="3c:e9:0e:6d:21:84",
|
||||
macaddress="3ce90e6d2184",
|
||||
),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue