From 4e62dacc00fa2596eb94e66f053af8882363839f Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sat, 6 Jan 2024 01:15:50 +0100 Subject: [PATCH] Fix lutron test AttributeError (2) (#107324) --- tests/components/lutron/test_config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/lutron/test_config_flow.py b/tests/components/lutron/test_config_flow.py index 85a5851aa74..b1f4b3365c9 100644 --- a/tests/components/lutron/test_config_flow.py +++ b/tests/components/lutron/test_config_flow.py @@ -164,7 +164,7 @@ async def test_import( @pytest.mark.parametrize( ("raise_error", "reason"), [ - (HTTPError("", 404, "", None, {}), "cannot_connect"), + (HTTPError("", 404, "", Message(), None), "cannot_connect"), (Exception, "unknown"), ], )