From 1f67e4fed1045b74bd9d9512ddbee13d1be2e04d Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 16:25:22 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in ruuvi_gateway (#110597) dhcp returns addresses in lowercase without : --- tests/components/ruuvi_gateway/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/ruuvi_gateway/test_config_flow.py b/tests/components/ruuvi_gateway/test_config_flow.py index e134425d509..42dac479955 100644 --- a/tests/components/ruuvi_gateway/test_config_flow.py +++ b/tests/components/ruuvi_gateway/test_config_flow.py @@ -34,7 +34,7 @@ DHCP_DATA = {**BASE_DATA, "host": DHCP_IP} dhcp.DhcpServiceInfo( hostname="RuuviGateway1234", ip=DHCP_IP, - macaddress="12:34:56:78:90:ab", + macaddress="1234567890ab", ), {"source": config_entries.SOURCE_DHCP}, DHCP_DATA,