Skip to content

Commit 2eda80e

Browse files
committed
Do not use misleading value in test
1 parent b598764 commit 2eda80e

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
@@ -145,7 +145,7 @@ def test_add_command_all_required():
145145
"--test-scenario",
146146
f"{Path(__file__)}",
147147
"--output-dir",
148-
f"{Path.cwd()}",
148+
"output_dir",
149149
]
150150
)
151151
assert args == argparse.Namespace(
@@ -155,7 +155,7 @@ def test_add_command_all_required():
155155
system_config=Path(__file__),
156156
tests_dir=Path.cwd(),
157157
test_scenario=Path(__file__),
158-
output_dir=Path.cwd(),
158+
output_dir=Path("output_dir"),
159159
)
160160

161161

0 commit comments

Comments
 (0)