1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Add entities for Balboa Spa pumps (#111245)

* Add entities for Balboa Spa pumps

* Fix fan tests and move client_update to __init__

* Ruff

---------

Co-authored-by: Jan-Philipp Benecke <github@bnck.me>
This commit is contained in:
Sebastian Noack
2024-02-28 08:19:02 -05:00
committed by GitHub
parent 5c124e5fd2
commit 5a57816e50
8 changed files with 204 additions and 15 deletions

View File

@@ -57,5 +57,6 @@ def client_fixture() -> Generator[MagicMock, None, None]:
client.heat_mode.set_state = AsyncMock()
client.heat_mode.options = list(HeatMode)[:2]
client.heat_state = 2
client.pumps = []
yield client