Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/test_myplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ def enabled():


@pytest.mark.authenticated
@pytest.mark.xfail(reason="Test account is missing online media sources?")
def test_myplex_onlineMediaSources_optOut(account):
onlineMediaSources = account.onlineMediaSources()
for optOut in onlineMediaSources:
Expand All @@ -146,7 +147,7 @@ def test_myplex_onlineMediaSources_optOut(account):
optOut._updateOptOut(optOutValue)

with pytest.raises(NotFound):
assert onlineMediaSources[0]._updateOptOut('unknown')
onlineMediaSources[0]._updateOptOut('unknown')


def test_myplex_inviteFriend_remove(account, plex, mocker):
Expand Down
1 change: 1 addition & 0 deletions tests/test_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,7 @@ def test_video_Movie_hubs(movies):


@pytest.mark.authenticated
@pytest.mark.xfail(reason="Test account is missing online media sources?")
def test_video_Movie_augmentation(movie, account):
onlineMediaSources = account.onlineMediaSources()
tidalOptOut = next(
Expand Down