mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
test_audio: Add missing assert (#1245)
This commit is contained in:
parent
dddc482614
commit
e466af58ee
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ def test_audio_Album_get(album):
|
||||||
|
|
||||||
def test_audio_Album_artist(album):
|
def test_audio_Album_artist(album):
|
||||||
artist = album.artist()
|
artist = album.artist()
|
||||||
artist.title == "Broke For Free"
|
assert artist.title == "Broke For Free"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.xfail(reason="Changing images fails randomly")
|
@pytest.mark.xfail(reason="Changing images fails randomly")
|
||||||
|
|
Loading…
Reference in a new issue