diff --git a/tests/test_artist.py b/tests/test_artist.py index 276e088d..914fa6a6 100755 --- a/tests/test_artist.py +++ b/tests/test_artist.py @@ -134,7 +134,7 @@ def test_artist_listener_count(self): def test_tag_artist(self): # Arrange artist = self.network.get_artist("Test Artist") - # artist.clear_tags() + # artist.clear_tags() # Act artist.add_tag("testing") diff --git a/tests/test_user.py b/tests/test_user.py index dda91b24..835d131d 100755 --- a/tests/test_user.py +++ b/tests/test_user.py @@ -154,15 +154,15 @@ def test_user_is_hashable(self): # fails due Last.fm's complaining of hitting the rate limit, even when # limited to one call per second. The ToS allows 5 calls per second. # def test_get_all_scrobbles(self): - # # Arrange - # lastfm_user = self.network.get_user("RJ") - # self.network.enable_rate_limit() # this is going to be slow... - - # # Act - # tracks = lastfm_user.get_recent_tracks(limit=None) - - # # Assert - # self.assertGreaterEqual(len(tracks), 0) + # # Arrange + # lastfm_user = self.network.get_user("RJ") + # self.network.enable_rate_limit() # this is going to be slow... + # + # # Act + # tracks = lastfm_user.get_recent_tracks(limit=None) + # + # # Assert + # self.assertGreaterEqual(len(tracks), 0) def test_pickle(self): # Arrange