Replace MBID for missing test album with a real one

This commit is contained in:
Hugo van Kemenade 2021-11-10 11:44:10 +02:00
parent ae7d4e3625
commit 3a7c83998f

View file

@ -245,7 +245,7 @@ class TestPyLastNetwork(TestPyLastWithLastFm):
def test_album_mbid(self): def test_album_mbid(self):
# Arrange # Arrange
mbid = "a6a265bf-9f81-4055-8224-f7ac0aa6b937" mbid = "03c91c40-49a6-44a7-90e7-a700edf97a62"
# Act # Act
album = self.network.get_album_by_mbid(mbid) album = self.network.get_album_by_mbid(mbid)
@ -253,7 +253,7 @@ class TestPyLastNetwork(TestPyLastWithLastFm):
# Assert # Assert
assert isinstance(album, pylast.Album) assert isinstance(album, pylast.Album)
assert album.title.lower() == "test" assert album.title == "Believe"
assert album_mbid == mbid assert album_mbid == mbid
def test_artist_mbid(self): def test_artist_mbid(self):