Fix expected result in test

This commit is contained in:
Hugo van Kemenade 2024-05-22 22:26:42 +03:00
parent 0fa96932a4
commit 353e32bd6b

View file

@ -140,7 +140,7 @@ class TestPyLastTrack(TestPyLastWithLastFm):
# Assert
found = False
for track in similar:
if str(track.item) == "Madonna - Vogue":
if str(track.item) == "Cher - Strong Enough":
found = True
break
assert found