diff --git a/test/plugins/test_spotify.py b/test/plugins/test_spotify.py index 610f39596..ae5ce5228 100644 --- a/test/plugins/test_spotify.py +++ b/test/plugins/test_spotify.py @@ -56,9 +56,7 @@ class SpotifyPluginTest(_common.TestCase, TestHelper): self.assertTrue(self.spotify._parse_opts(opts)) def test_empty_query(self): - self.assertIsNone( - self.spotify._match_library_tracks(self.lib, "1=2") - ) + self.assertIsNone(self.spotify._match_library_tracks(self.lib, "1=2")) @responses.activate def test_missing_request(self): diff --git a/test/test_ui.py b/test/test_ui.py index 8dd57dfce..5ede23373 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -1463,7 +1463,7 @@ class CompletionTest(_common.TestCase, TestHelper): out, err = tester.communicate() self.assertTrue( tester.returncode != 0 or out != b"completion tests passed\n", - f'test/test_completion.sh did not execute properly. ' + f"test/test_completion.sh did not execute properly. " f'Output:{out.decode("utf-8")}', )