We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1ea7c commit 68e78a6Copy full SHA for 68e78a6
tests/test_cli.py
@@ -10,7 +10,7 @@
10
11
def test_cli_with_default_options():
12
runner = CliRunner()
13
- result = runner.invoke(main, ["../"])
+ result = runner.invoke(main, ["./"])
14
output_lines = result.output.strip().split("\n")
15
assert f"Analysis complete! Output written to: {OUTPUT_FILE_PATH}" in output_lines
16
assert os.path.exists(OUTPUT_FILE_PATH), f"Output file was not created at {OUTPUT_FILE_PATH}"
@@ -23,7 +23,7 @@ def test_cli_with_options():
23
result = runner.invoke(
24
main,
25
[
26
- "../",
+ "./",
27
"--output",
28
OUTPUT_FILE_PATH,
29
"--max-size",
0 commit comments