Skip to content

Commit 68e78a6

Browse files
Fixing path
1 parent dc1ea7c commit 68e78a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
def test_cli_with_default_options():
1212
runner = CliRunner()
13-
result = runner.invoke(main, ["../"])
13+
result = runner.invoke(main, ["./"])
1414
output_lines = result.output.strip().split("\n")
1515
assert f"Analysis complete! Output written to: {OUTPUT_FILE_PATH}" in output_lines
1616
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():
2323
result = runner.invoke(
2424
main,
2525
[
26-
"../",
26+
"./",
2727
"--output",
2828
OUTPUT_FILE_PATH,
2929
"--max-size",

0 commit comments

Comments
 (0)