Bump aiorussound to 3.0.4 (#125285)

feat: bump aiorussound to 3.0.4
This commit is contained in:
Noah Husby 2024-09-06 09:22:39 -04:00 committed by GitHub
parent 3a5309e9a0
commit 8d239d368b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 39 additions and 31 deletions

View file

@ -37,10 +37,10 @@ def mock_russound() -> Generator[AsyncMock]:
"""Mock the Russound RIO client."""
with (
patch(
"homeassistant.components.russound_rio.Russound", autospec=True
"homeassistant.components.russound_rio.RussoundClient", autospec=True
) as mock_client,
patch(
"homeassistant.components.russound_rio.config_flow.Russound",
"homeassistant.components.russound_rio.config_flow.RussoundClient",
return_value=mock_client,
),
):