mirror of
https://github.com/beetbox/beets.git
synced 2025-12-13 20:13:09 +01:00
reformat with black
This commit is contained in:
parent
52271bc093
commit
dba24a7d96
2 changed files with 2 additions and 4 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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")}',
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue