From c41f831d82c02166e887e32a63a5e19330b50ed5 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 19 Oct 2021 13:17:20 +0300 Subject: [PATCH] Fix test --- tests/test_artist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_artist.py b/tests/test_artist.py index 4e8d694..a911882 100755 --- a/tests/test_artist.py +++ b/tests/test_artist.py @@ -22,7 +22,7 @@ class TestPyLastArtist(TestPyLastWithLastFm): def test_artist_is_hashable(self): # Arrange - test_artist = self.network.get_artist("Test Artist") + test_artist = self.network.get_artist("Radiohead") artist = test_artist.get_similar(limit=2)[0].item assert isinstance(artist, pylast.Artist)