Use correctly formatted MAC in incomfort tests (#147819)

This commit is contained in:
epenet 2025-06-30 18:02:42 +02:00 committed by GitHub
parent 53936ab062
commit 1e3ebd5650
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,13 +22,13 @@ from tests.common import MockConfigEntry
DHCP_SERVICE_INFO = DhcpServiceInfo(
hostname="rfgateway",
ip="192.168.1.12",
macaddress="0004A3DEADFF",
macaddress=dr.format_mac("00:04:A3:DE:AD:FF").replace(":", ""),
)
DHCP_SERVICE_INFO_ALT = DhcpServiceInfo(
hostname="rfgateway",
ip="192.168.1.99",
macaddress="0004A3DEADFF",
macaddress=dr.format_mac("00:04:A3:DE:AD:FF").replace(":", ""),
)