Skip to content

Commit 0708821

Browse files
test: fix test_audio_Audio_sonicallySimilar authenticated test (#1298)
* test: fix test_audio_Audio_sonicallySimilar authenticated test * Update tests/test_audio.py Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> --------- Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>
1 parent c801268 commit 0708821

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def account_plexpass(account):
144144
if not account.subscriptionActive:
145145
pytest.skip(
146146
"PlexPass subscription is not active, unable to test dashboard, movie extras, movie editions, "
147-
"or sync-stuff, be careful!"
147+
"sync-stuff, etc... be careful!"
148148
)
149149
return account
150150

tests/test_audio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def test_audio_Audio_section(artist, album, track):
444444

445445

446446
@pytest.mark.authenticated
447-
def test_audio_Audio_sonicallySimilar(artist):
447+
def test_audio_Audio_sonicallySimilar(account_plexpass, artist):
448448
similar_audio = artist.sonicallySimilar()
449449
assert isinstance(similar_audio, list)
450450
assert all(isinstance(i, type(artist)) for i in similar_audio)

0 commit comments

Comments
 (0)