Fix excessive line length.

This commit is contained in:
Jakub Turski 2017-06-02 16:04:05 +01:00
parent a43f5fdace
commit 0e7a0a62d4

View file

@ -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)