Skip to content

Commit 8ea8528

Browse files
style: apply ruff format to tests/test_cli_error_paths.py
1 parent 7f57890 commit 8ea8528

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/test_cli_error_paths.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ def test_batch_with_nonexistent_file(self):
1616
"""batch subcommand with missing file shows errors."""
1717
result = runner.invoke(cli, ["batch", "/nonexistent/file.json"])
1818
assert result.exit_code != 0
19-
assert "ERROR" in result.output or "error" in result.output or "Error" in result.output
19+
assert (
20+
"ERROR" in result.output
21+
or "error" in result.output
22+
or "Error" in result.output
23+
)
2024

2125
def test_detect_no_file(self):
2226
"""detect subcommand with nonexistent file shows error."""

0 commit comments

Comments
 (0)