Fix formatting of mac addresses from dhcp discovery mocking in vicare (#110613)
dhcp returns addresses in lowercase without :
This commit is contained in:
parent
fa026b7e12
commit
e6ac4c5f1f
1 changed files with 1 additions and 1 deletions
|
@ -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(":", ""),
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue