Fix formatting of mac addresses from dhcp discovery mocking in vicare (#110613)

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

View File

@ -30,7 +30,7 @@ VALID_CONFIG = {
DHCP_INFO = dhcp.DhcpServiceInfo(
ip="1.1.1.1",
hostname="mock_hostname",
macaddress=MOCK_MAC,
macaddress=MOCK_MAC.lower().replace(":", ""),
)