mirror of
https://github.com/home-assistant/core.git
synced 2025-08-14 01:55:18 +02:00
Fix formatting of mac addresses from dhcp discovery mocking in screenlogic (#110602)
dhcp returns addresses in lowercase without :
This commit is contained in:
@@ -133,7 +133,7 @@ async def test_dhcp(hass: HomeAssistant) -> None:
|
|||||||
data=dhcp.DhcpServiceInfo(
|
data=dhcp.DhcpServiceInfo(
|
||||||
hostname="Pentair: 01-01-01",
|
hostname="Pentair: 01-01-01",
|
||||||
ip="1.1.1.1",
|
ip="1.1.1.1",
|
||||||
macaddress="AA:BB:CC:DD:EE:FF",
|
macaddress="aabbccddeeff",
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user