Skip to content

Commit 9f087aa

Browse files
committed
Update outdated tests
1 parent 880d76f commit 9f087aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def test_get_artist(session):
4747

4848
def test_get_artist_albums(session):
4949
albums = session.get_artist_albums(16147)
50-
assert albums[0].name == 'Some Things'
50+
assert albums[0].name == 'Some Things (Deluxe)'
5151

5252

5353
def test_get_artist_albums_ep_single(session):
@@ -69,7 +69,7 @@ def test_get_album(session):
6969
album_id = 17927863
7070
album = session.get_album(album_id)
7171
assert album.id == album_id
72-
assert album.name == 'Some Things'
72+
assert album.name == 'Some Things (Deluxe)'
7373
assert album.num_tracks == 22
7474
assert album.num_discs == 2
7575
assert album.duration == 6704

0 commit comments

Comments
 (0)