Skip to content

Commit

Permalink
Release v7.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdwetering committed Aug 6, 2024
2 parents 393bf59 + 394f421 commit 5d46162
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions custom_components/yamaha_ynca/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"ynca"
],
"requirements": [
"ynca==5.16.0"
"ynca==5.16.1"
],
"version": "7.10.0"
"version": "7.10.1"
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Also update manifest.json!
ynca==5.16.0
ynca==5.16.1
4 changes: 2 additions & 2 deletions tests/test_media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ async def test_mediaplayer_entity_mute_volume(mp_entity: YamahaYncaZone, mock_zo

# No mute support
mock_zone.mute = None
assert mp_entity.is_volume_muted == None
assert mp_entity.is_volume_muted is None


async def test_mediaplayer_entity_volume_set_up_down(
Expand Down Expand Up @@ -158,7 +158,7 @@ async def test_mediaplayer_entity_volume_set_up_down(

# No vol support
mock_zone.vol = None
assert mp_entity.volume_level == None
assert mp_entity.volume_level is None


async def test_mediaplayer_entity_source(hass, mock_zone, mock_ynca):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ async def test_select_surrounddecoder_entity_current_option(

# Current value, not supported (should not happen)
mock_zone.twochdecoder = None
assert entity.current_option == None
assert entity.current_option is None


async def test_select_surrounddecoder_entity_options_nothing_selection_in_configentry(
Expand Down

0 comments on commit 5d46162

Please sign in to comment.