reformat with black

This commit is contained in:
freddiewanah 2024-04-11 18:44:32 +02:00
parent 52271bc093
commit dba24a7d96
2 changed files with 2 additions and 4 deletions

View file

@ -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):

View file

@ -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")}',
)