From 2f72ec827060da8989c6dae6365ce3f61daf44f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Neto?= Date: Thu, 9 Jul 2015 17:02:53 -0300 Subject: [PATCH] pep8 compliance --- tests/test_pylast.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_pylast.py b/tests/test_pylast.py index 1f3ae40..25a9596 100755 --- a/tests/test_pylast.py +++ b/tests/test_pylast.py @@ -1907,24 +1907,24 @@ class TestPyLast(unittest.TestCase): self.assertEqual(len(tracks), 1) self.assertEqual(str(tracks[0].track.artist), "Johnny Cash") self.assertEqual(str(tracks[0].track.title), "Ring of Fire") - + def test_artist_get_correction(self): # Arrange artist = pylast.Artist("guns and roses", self.network) - + # Act corrected_artist_name = artist.get_correction() - + # Assert self.assertEqual(corrected_artist_name, "Guns N' Roses") - + def test_track_get_correction(self): # Arrange track = pylast.Track("Guns N' Roses", "mrbrownstone", self.network) - + # Act corrected_track_name = track.get_correction() - + # Assert self.assertEqual(corrected_track_name, "Mr. Brownstone")