We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f57890 commit 8ea8528Copy full SHA for 8ea8528
1 file changed
tests/test_cli_error_paths.py
@@ -16,7 +16,11 @@ def test_batch_with_nonexistent_file(self):
16
"""batch subcommand with missing file shows errors."""
17
result = runner.invoke(cli, ["batch", "/nonexistent/file.json"])
18
assert result.exit_code != 0
19
- assert "ERROR" in result.output or "error" in result.output or "Error" in result.output
+ assert (
20
+ "ERROR" in result.output
21
+ or "error" in result.output
22
+ or "Error" in result.output
23
+ )
24
25
def test_detect_no_file(self):
26
"""detect subcommand with nonexistent file shows error."""
0 commit comments