From 955c70b8f11fa276c74cb529c8eeb93a54c8929c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 8 Jan 2024 20:59:29 -1000 Subject: [PATCH] Fix cloudflare tests using a dict for the unique id (#107601) fix cloudflare tests using a dict for the unique id --- tests/components/cloudflare/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/cloudflare/__init__.py b/tests/components/cloudflare/__init__.py index 8ba8b23b65f..6b9e77dcb2a 100644 --- a/tests/components/cloudflare/__init__.py +++ b/tests/components/cloudflare/__init__.py @@ -57,7 +57,7 @@ async def init_integration( *, data: dict = ENTRY_CONFIG, options: dict = ENTRY_OPTIONS, - unique_id: str = MOCK_ZONE, + unique_id: str = MOCK_ZONE["name"], skip_setup: bool = False, ) -> MockConfigEntry: """Set up the Cloudflare integration in Home Assistant."""