Skip to content

Commit

Permalink
sort the parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Mar 30, 2024
1 parent 1ac1540 commit 6b0a79c
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 @@ -9,7 +9,7 @@

@pytest.mark.parametrize(
"args, report",
((["PIL.report"], True), (["PIL", "--report"], True), (["PIL"], False)),
((["PIL"], False), (["PIL", "--report"], True), (["PIL.report"], True)),
)
def test_main(args, report) -> None:
args = [sys.executable, "-m"] + args
Expand Down

0 comments on commit 6b0a79c

Please sign in to comment.