Fix formatting of mac addresses from dhcp discovery mocking in ruuvi_gateway (#110597)

dhcp returns addresses in lowercase without :
This commit is contained in:
J. Nick Koston 2024-02-14 16:25:22 -06:00 committed by GitHub
parent 28afe9ff9e
commit 1f67e4fed1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ DHCP_DATA = {**BASE_DATA, "host": DHCP_IP}
dhcp.DhcpServiceInfo(
hostname="RuuviGateway1234",
ip=DHCP_IP,
macaddress="12:34:56:78:90:ab",
macaddress="1234567890ab",
),
{"source": config_entries.SOURCE_DHCP},
DHCP_DATA,