Skip to content

Commit

Permalink
Fix test to assert choices infodict is tuple.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBackx committed Dec 22, 2024
1 parent 902d690 commit 32a94e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_info_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@
),
pytest.param(*STRING_PARAM_TYPE, id="STRING ParamType"),
pytest.param(
click.Choice(["a", "b"]),
click.Choice(("a", "b")),
{
"param_type": "Choice",
"name": "choice",
"choices": ["a", "b"],
"choices": ("a", "b"),
"case_sensitive": True,
},
id="Choice ParamType",
Expand Down

0 comments on commit 32a94e4

Please sign in to comment.