From c045e23000a6dba37fc5291a5661af3fe824bc21 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 16:01:15 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in overkiz (#110590) --- tests/components/overkiz/test_config_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/overkiz/test_config_flow.py b/tests/components/overkiz/test_config_flow.py index 146d54feb9c..9b7b9f38287 100644 --- a/tests/components/overkiz/test_config_flow.py +++ b/tests/components/overkiz/test_config_flow.py @@ -757,7 +757,7 @@ async def test_dhcp_flow(hass: HomeAssistant, mock_setup_entry: AsyncMock) -> No data=dhcp.DhcpServiceInfo( hostname="gateway-1234-5678-9123", ip="192.168.1.4", - macaddress="F8811A000000", + macaddress="f8811a000000", ), context={"source": config_entries.SOURCE_DHCP}, ) @@ -815,7 +815,7 @@ async def test_dhcp_flow_already_configured(hass: HomeAssistant) -> None: data=dhcp.DhcpServiceInfo( hostname="gateway-1234-5678-9123", ip="192.168.1.4", - macaddress="F8811A000000", + macaddress="f8811a000000", ), context={"source": config_entries.SOURCE_DHCP}, )