From f6830b4bc3dafcef2f71a92904213e0905e02ae7 Mon Sep 17 00:00:00 2001 From: Jakub Turski Date: Fri, 2 Jun 2017 16:27:49 +0100 Subject: [PATCH] Here, flake8, be happy. --- test/test_lastgenre.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_lastgenre.py b/test/test_lastgenre.py index 18cb81a0a..a70c65ca1 100644 --- a/test/test_lastgenre.py +++ b/test/test_lastgenre.py @@ -219,7 +219,7 @@ class LastGenrePluginTest(unittest.TestCase, TestHelper): tags = ('electronic', 'ambient', 'post-rock', 'downtempo') res = self.plugin._sort_by_depth(tags) self.assertEqual( - res, ['post-rock', 'downtempo', 'ambient', 'electronic']) + res, ['post-rock', 'downtempo', 'ambient', 'electronic']) # Non-canonical tag ('chillout') present. tags = ('electronic', 'ambient', 'chillout') res = self.plugin._sort_by_depth(tags)