mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 12:02:44 +01:00
Fix pep8 in test
This commit is contained in:
parent
00d5473187
commit
974155f2bc
1 changed files with 2 additions and 1 deletions
|
|
@ -323,7 +323,8 @@ class LyricsGooglePluginTest(unittest.TestCase):
|
|||
for s in GOOGLE_SOURCES:
|
||||
url = s['url'] + s['path']
|
||||
if os.path.isfile(url_to_filename(url)):
|
||||
res = lyrics.scrape_lyrics_from_html(raw_backend.fetch_url(url))
|
||||
res = lyrics.scrape_lyrics_from_html(
|
||||
raw_backend.fetch_url(url))
|
||||
self.assertTrue(google.is_lyrics(res), url)
|
||||
self.assertTrue(is_lyrics_content_ok(s['title'], res), url)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue