Change keys for Samsung TV next and prev track command (#28213)
This commit is contained in:
parent
5e973dd017
commit
b4ccc0202a
2 changed files with 4 additions and 4 deletions
|
@ -543,7 +543,7 @@ async def test_media_next_track(hass, remote):
|
|||
)
|
||||
# key and update called
|
||||
assert remote.control.call_count == 2
|
||||
assert remote.control.call_args_list == [call("KEY_FF"), call("KEY")]
|
||||
assert remote.control.call_args_list == [call("KEY_CHUP"), call("KEY")]
|
||||
|
||||
|
||||
async def test_media_previous_track(hass, remote):
|
||||
|
@ -554,7 +554,7 @@ async def test_media_previous_track(hass, remote):
|
|||
)
|
||||
# key and update called
|
||||
assert remote.control.call_count == 2
|
||||
assert remote.control.call_args_list == [call("KEY_REWIND"), call("KEY")]
|
||||
assert remote.control.call_args_list == [call("KEY_CHDOWN"), call("KEY")]
|
||||
|
||||
|
||||
async def test_turn_on_with_mac(hass, remote, wakeonlan):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue