Skip to content

Commit 0c9f988

Browse files
committed
Fix test to assert choices infodict is tuple.
1 parent e557f3d commit 0c9f988

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_info_dict.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@
106106
),
107107
pytest.param(*STRING_PARAM_TYPE, id="STRING ParamType"),
108108
pytest.param(
109-
click.Choice(["a", "b"]),
109+
click.Choice(("a", "b")),
110110
{
111111
"param_type": "Choice",
112112
"name": "choice",
113-
"choices": ["a", "b"],
113+
"choices": ("a", "b"),
114114
"case_sensitive": True,
115115
},
116116
id="Choice ParamType",

0 commit comments

Comments
 (0)