Navigation Menu

Skip to content

Commit

Permalink
Fix commented-out formatting post-Black
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jun 6, 2018
1 parent 9194232 commit 6503002
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/test_artist.py
Expand Up @@ -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")
Expand Down
18 changes: 9 additions & 9 deletions tests/test_user.py
Expand Up @@ -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
Expand Down

0 comments on commit 6503002

Please sign in to comment.