Skip to content

Commit 37a2de3

Browse files
committed
more black fixes
1 parent cbc0928 commit 37a2de3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/test_ci.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ def test_cli_noexecute():
5656
# Should complete without error (even if no results found)
5757
assert result.returncode in [0, 1] # 0 = success, 1 = no results found
5858
# Output goes to stderr, not stdout
59-
assert "Total" in (result.stdout + result.stderr) or "hits" in (result.stdout + result.stderr).lower()
59+
assert (
60+
"Total" in (result.stdout + result.stderr)
61+
or "hits" in (result.stdout + result.stderr).lower()
62+
)
6063

6164

6265
def test_cli_syntax():

0 commit comments

Comments
 (0)