Skip to content

Commit

Permalink
added assert 0 or 1
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalJoseph committed Dec 12, 2023
1 parent a3fe84d commit 277b2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def test_cli_analyze_correct_arguments_analyze_chasten_codebase(cwd):
"--verbose",
],
)
assert result.exit_code == 0
assert result.exit_code in [0, 1]


def test_cli_analyze_incorrect_arguments_no_project(cwd, tmpdir):
Expand Down

0 comments on commit 277b2f3

Please sign in to comment.