Fix formatting of mac addresses from dhcp discovery mocking in nest (#110584)

dhcp returns addresses in lowercase without :
pull/110622/head
J. Nick Koston 2024-02-14 16:25:52 -06:00 committed by GitHub
parent 7b4c5a112c
commit 78bc561700
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ APP_REDIRECT_URL = "urn:ietf:wg:oauth:2.0:oob"
FAKE_DHCP_DATA = dhcp.DhcpServiceInfo(
ip="127.0.0.2", macaddress="00:11:22:33:44:55", hostname="fake_hostname"
ip="127.0.0.2", macaddress="001122334455", hostname="fake_hostname"
)