mirror of
https://github.com/beetbox/beets.git
synced 2026-02-16 20:35:23 +01:00
Fix excessive line length.
This commit is contained in:
parent
a43f5fdace
commit
0e7a0a62d4
1 changed files with 2 additions and 1 deletions
|
|
@ -218,7 +218,8 @@ class LastGenrePluginTest(unittest.TestCase, TestHelper):
|
|||
# Normal case.
|
||||
tags = ('electronic', 'ambient', 'post-rock', 'downtempo')
|
||||
res = self.plugin._sort_by_depth(tags)
|
||||
self.assertEqual(res, ['post-rock', 'downtempo', 'ambient', 'electronic'])
|
||||
self.assertEqual(
|
||||
res, ['post-rock', 'downtempo', 'ambient', 'electronic'])
|
||||
# Non-canonical tag ('chillout') present.
|
||||
tags = ('electronic', 'ambient', 'chillout')
|
||||
res = self.plugin._sort_by_depth(tags)
|
||||
|
|
|
|||
Loading…
Reference in a new issue