From f861d70c58d512dde7e5f0e9a04030a3ba4870a8 Mon Sep 17 00:00:00 2001 From: Wytamma Wirth Date: Thu, 26 Sep 2024 02:01:49 +1000 Subject: [PATCH] :white_check_mark: fix tests --- tests/test_cli/test_dynamic_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli/test_dynamic_options.py b/tests/test_cli/test_dynamic_options.py index a96f2ba..bc6b016 100644 --- a/tests/test_cli/test_dynamic_options.py +++ b/tests/test_cli/test_dynamic_options.py @@ -69,7 +69,7 @@ def test_create_option_from_annotation_with_enums( "test", default_annotation_values, default_default_values ) - assert option.enums == ["a", "b", "c"] + assert option.choices == ["a", "b", "c"] @pytest.fixture