Fix lutron test AttributeError (2) (#107324)

pull/107331/head
Marc Mueller 2024-01-06 01:15:50 +01:00 committed by GitHub
parent 133fd6ea5d
commit 4e62dacc00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"),
],
)