diff --git a/tests/backends/local/library_test.py b/tests/backends/local/library_test.py index af09b4bb..90002c69 100644 --- a/tests/backends/local/library_test.py +++ b/tests/backends/local/library_test.py @@ -221,7 +221,8 @@ class LocalLibraryProviderTest(unittest.TestCase): # Matches on track album artists result = self.library.find_exact(any=['artist3']) - self.assertEqual(list(result[0].tracks), [self.tracks[3], self.tracks[2]]) + self.assertEqual(list(result[0].tracks), [self.tracks[3], + self.tracks[2]]) # Matches on track year result = self.library.find_exact(any=['2002']) @@ -364,7 +365,8 @@ class LocalLibraryProviderTest(unittest.TestCase): # Matches on track album artists result = self.library.search(any=['Tist3']) - self.assertEqual(list(result[0].tracks), [self.tracks[3], self.tracks[2]]) + self.assertEqual(list(result[0].tracks), [self.tracks[3], + self.tracks[2]]) # Matches on URI result = self.library.search(any=['TH1'])