From cefaf0e06567208022d8d720a933469aead5ac63 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 16:21:56 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in tolo (#110608) dhcp returns addresses in lowercase without : --- tests/components/tolo/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/tolo/test_config_flow.py b/tests/components/tolo/test_config_flow.py index df36570497b..77547557b63 100644 --- a/tests/components/tolo/test_config_flow.py +++ b/tests/components/tolo/test_config_flow.py @@ -12,7 +12,7 @@ from homeassistant.core import HomeAssistant from homeassistant.data_entry_flow import FlowResultType MOCK_DHCP_DATA = dhcp.DhcpServiceInfo( - ip="127.0.0.2", macaddress="00:11:22:33:44:55", hostname="mock_hostname" + ip="127.0.0.2", macaddress="001122334455", hostname="mock_hostname" )