mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
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
@ -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…
x
Reference in New Issue
Block a user