From b87e34ec67bde4e02a4560e34f364d8a61a4165b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 16:23:13 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in screenlogic (#110602) dhcp returns addresses in lowercase without : --- tests/components/screenlogic/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/screenlogic/test_config_flow.py b/tests/components/screenlogic/test_config_flow.py index 14488c66564..8e40f5f0e5c 100644 --- a/tests/components/screenlogic/test_config_flow.py +++ b/tests/components/screenlogic/test_config_flow.py @@ -133,7 +133,7 @@ async def test_dhcp(hass: HomeAssistant) -> None: data=dhcp.DhcpServiceInfo( hostname="Pentair: 01-01-01", ip="1.1.1.1", - macaddress="AA:BB:CC:DD:EE:FF", + macaddress="aabbccddeeff", ), )