From debf7fb7f1369ddecbd19f39f9073474bc8b5c66 Mon Sep 17 00:00:00 2001 From: David Bonnes Date: Wed, 25 Sep 2024 14:45:11 +0100 Subject: [PATCH] doctweak --- tests/components/evohome/test_init.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/components/evohome/test_init.py b/tests/components/evohome/test_init.py index a2b65ce7c3e300..8704fe4a83f63d 100644 --- a/tests/components/evohome/test_init.py +++ b/tests/components/evohome/test_init.py @@ -101,7 +101,10 @@ async def test_authentication_failure_v2( status: HTTPStatus, caplog: pytest.LogCaptureFixture, ) -> None: - """Test failure to setup an evohome-compatible system.""" + """Test failure to setup an evohome-compatible system. + + In this instance, the failure occurs in the v2 API. + """ with patch("evohomeasync2.broker.Broker.get") as mock_fcn: mock_fcn.side_effect = exc.AuthenticationFailed("", status=status) @@ -126,7 +129,10 @@ async def test_client_request_failure_v2( status: HTTPStatus, caplog: pytest.LogCaptureFixture, ) -> None: - """Test failure to setup an evohome-compatible system.""" + """Test failure to setup an evohome-compatible system. + + In this instance, the failure occurs in the v2 API. + """ with patch("evohomeasync2.broker.Broker.get") as mock_fcn: mock_fcn.side_effect = exc.RequestFailed("", status=status)