Skip to content

Commit 2f0d38f

Browse files
committed
Fix test
1 parent 8ef7700 commit 2f0d38f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/cli/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def test_plan_very_verbose(runner, tmp_path, copy_to_temp_path):
280280
# Input: `y` to apply and backfill
281281
result = runner.invoke(
282282
cli,
283-
["--log-file-dir", temp_path[0], "--paths", temp_path[0], "plan", "--verbose"],
283+
["--log-file-dir", temp_path[0], "--paths", temp_path[0], "plan", "-v"],
284284
input="y\n",
285285
)
286286
assert result.exit_code == 0
@@ -290,7 +290,7 @@ def test_plan_very_verbose(runner, tmp_path, copy_to_temp_path):
290290
# Input: `y` to apply and backfill
291291
result = runner.invoke(
292292
cli,
293-
["--log-file-dir", temp_path[0], "--paths", temp_path[0], "plan", "--very-verbose"],
293+
["--log-file-dir", temp_path[0], "--paths", temp_path[0], "plan", "-vv"],
294294
input="y\n",
295295
)
296296
assert result.exit_code == 0

0 commit comments

Comments
 (0)