From 48cd973c62ab0a23948d255af5fdfa7dd5fb343e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 16:22:24 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in tailwind (#110606) dhcp returns addresses in lowercase without : --- tests/components/tailwind/test_config_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/tailwind/test_config_flow.py b/tests/components/tailwind/test_config_flow.py index 6d35ccea85a..341f977d350 100644 --- a/tests/components/tailwind/test_config_flow.py +++ b/tests/components/tailwind/test_config_flow.py @@ -400,7 +400,7 @@ async def test_dhcp_discovery_updates_entry( data=DhcpServiceInfo( hostname="tailwind-3ce90e6d2184.local.", ip="127.0.0.1", - macaddress="3c:e9:0e:6d:21:84", + macaddress="3ce90e6d2184", ), ) @@ -420,7 +420,7 @@ async def test_dhcp_discovery_ignores_unknown(hass: HomeAssistant) -> None: data=DhcpServiceInfo( hostname="tailwind-3ce90e6d2184.local.", ip="127.0.0.1", - macaddress="3c:e9:0e:6d:21:84", + macaddress="3ce90e6d2184", ), )