mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 09:47:13 +00:00
Fix formatting of mac addresses from dhcp discovery mocking in fully_kiosk (#110573)
dhcp returns addresses in lowercase without :
This commit is contained in:
parent
efbfec0ece
commit
52e8f7f865
@ -178,7 +178,7 @@ async def test_dhcp_discovery_updates_entry(
|
|||||||
data=DhcpServiceInfo(
|
data=DhcpServiceInfo(
|
||||||
hostname="tablet",
|
hostname="tablet",
|
||||||
ip="127.0.0.2",
|
ip="127.0.0.2",
|
||||||
macaddress="aa:bb:cc:dd:ee:ff",
|
macaddress="aabbccddeeff",
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -206,7 +206,7 @@ async def test_dhcp_unknown_device(
|
|||||||
data=DhcpServiceInfo(
|
data=DhcpServiceInfo(
|
||||||
hostname="tablet",
|
hostname="tablet",
|
||||||
ip="127.0.0.2",
|
ip="127.0.0.2",
|
||||||
macaddress="aa:bb:cc:dd:ee:00",
|
macaddress="aabbccddee00",
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user