Fix formatting of mac addresses from dhcp discovery mocking in fully_kiosk (#110573)

dhcp returns addresses in lowercase without :
pull/110592/head
J. Nick Koston 2024-02-14 13:54:44 -06:00 committed by GitHub
parent efbfec0ece
commit 52e8f7f865
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ async def test_dhcp_discovery_updates_entry(
data=DhcpServiceInfo(
hostname="tablet",
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(
hostname="tablet",
ip="127.0.0.2",
macaddress="aa:bb:cc:dd:ee:00",
macaddress="aabbccddee00",
),
)