From afcd6a8114a0cb2301b325c4bfc60406f640f94b Mon Sep 17 00:00:00 2001 From: Twangboy Date: Mon, 1 May 2023 17:38:55 -0600 Subject: [PATCH] Fix test description --- tests/pytests/unit/config/test__validate_opts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pytests/unit/config/test__validate_opts.py b/tests/pytests/unit/config/test__validate_opts.py index a9112efdef1..741631e6f81 100644 --- a/tests/pytests/unit/config/test__validate_opts.py +++ b/tests/pytests/unit/config/test__validate_opts.py @@ -418,9 +418,9 @@ def test_dict_bool_none_types(option_value, expected): ) def test_bool_int_types(option_value, expected): """ - Some config settings have three types, dict, bool, and None which should - evaluate as True. All others should return False. - ssl is a dict, bool type config option + Some config settings have two types, bool and int. In that case, bool and + int should evaluate as True. All others should return False. + state_queue is a bool/int config option """ result = salt.config._validate_opts({"state_queue": option_value}) assert result is expected