From dba24a7d96ce1d66d60773fba678e1790ec4f233 Mon Sep 17 00:00:00 2001 From: freddiewanah Date: Thu, 11 Apr 2024 18:44:32 +0200 Subject: [PATCH] reformat with black --- test/plugins/test_spotify.py | 4 +--- test/test_ui.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) 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")}', )