From 0e7a0a62d43c23cb27b08c79246cffaa82a8f0a1 Mon Sep 17 00:00:00 2001 From: Jakub Turski Date: Fri, 2 Jun 2017 16:04:05 +0100 Subject: [PATCH] Fix excessive line length. --- test/test_lastgenre.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_lastgenre.py b/test/test_lastgenre.py index d8ba60cf9..18cb81a0a 100644 --- a/test/test_lastgenre.py +++ b/test/test_lastgenre.py @@ -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)