From fa026b7e127e5505c13e507366ab7ba08b92cdfe Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 14 Feb 2024 16:20:32 -0600 Subject: [PATCH] Fix formatting of mac addresses from dhcp discovery mocking in wiz (#110615) dhcp returns addresses in lowercase without : wiz discovery returns addresses in lowercase without : --- tests/components/wiz/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/wiz/__init__.py b/tests/components/wiz/__init__.py index 35c6160c439..165e0557fcd 100644 --- a/tests/components/wiz/__init__.py +++ b/tests/components/wiz/__init__.py @@ -35,7 +35,7 @@ FAKE_STATE = PilotParser( } ) FAKE_IP = "1.1.1.1" -FAKE_MAC = "ABCABCABCABC" +FAKE_MAC = "abcabcabcabc" FAKE_BULB_CONFIG = { "method": "getSystemConfig", "env": "pro",