From cd0ce7d9f6d28d9fa6d3c8d339a999f4c2a40c94 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 13:53:50 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in intellifire (#110579) dhcp returns addresses in lowercase without : --- tests/components/intellifire/test_config_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/intellifire/test_config_flow.py b/tests/components/intellifire/test_config_flow.py index 93aef0944aa..1bc8cc0e06a 100644 --- a/tests/components/intellifire/test_config_flow.py +++ b/tests/components/intellifire/test_config_flow.py @@ -322,7 +322,7 @@ async def test_dhcp_discovery_intellifire_device( context={"source": config_entries.SOURCE_DHCP}, data=dhcp.DhcpServiceInfo( ip="1.1.1.1", - macaddress="AA:BB:CC:DD:EE:FF", + macaddress="aabbcceeddff", hostname="zentrios-Test", ), ) @@ -352,7 +352,7 @@ async def test_dhcp_discovery_non_intellifire_device( context={"source": config_entries.SOURCE_DHCP}, data=dhcp.DhcpServiceInfo( ip="1.1.1.1", - macaddress="AA:BB:CC:DD:EE:FF", + macaddress="aabbcceeddff", hostname="zentrios-Evil", ), )