test_audio: Add missing assert (#1245)

This commit is contained in:
Elan Ruusamäe 2023-09-18 01:36:45 +03:00 committed by GitHub
parent dddc482614
commit e466af58ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,7 +211,7 @@ def test_audio_Album_get(album):
def test_audio_Album_artist(album):
artist = album.artist()
artist.title == "Broke For Free"
assert artist.title == "Broke For Free"
@pytest.mark.xfail(reason="Changing images fails randomly")