Fix sonos volume always showing 0 (#48685)

This commit is contained in:
J. Nick Koston 2021-04-04 17:26:55 -10:00 committed by GitHub
parent 30382c3dbe
commit 6dc1414b69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 2 deletions

View file

@ -31,6 +31,10 @@ def soco_fixture(music_library, speaker_info, dummy_soco_service):
mock_soco.renderingControl = dummy_soco_service
mock_soco.zoneGroupTopology = dummy_soco_service
mock_soco.contentDirectory = dummy_soco_service
mock_soco.mute = False
mock_soco.night_mode = True
mock_soco.dialog_mode = True
mock_soco.volume = 19
yield mock_soco