Skip to content

Commit

Permalink
Fix test_main_mutually_exclusive_args_error
Browse files Browse the repository at this point in the history
  • Loading branch information
realshouzy committed Mar 7, 2024
1 parent bb2e653 commit d8c0485
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/pip_review_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,14 +700,14 @@ def test_format_table_value_error_when_columns_are_not_the_same_length() -> None
@pytest.mark.parametrize(
("args", "err_msg"),
[
(["--raw", "--auto"], "--raw and --auto cannot be used together\n"),
(["--raw", "--auto"], "'--raw' and '--auto' cannot be used together\n"),
(
["--raw", "--interactive"],
"--raw and --interactive cannot be used together\n",
"'--raw' and '--interactive' cannot be used together\n",
),
(
["--auto", "--interactive"],
"--auto and --interactive cannot be used together\n",
"'--auto' and '--interactive' cannot be used together\n",
),
],
)
Expand Down

0 comments on commit d8c0485

Please sign in to comment.