diff --git a/tests/unit/test_cli/test_tool_commands.py b/tests/unit/test_cli/test_tool_commands.py index b437ad22..64cf9441 100644 --- a/tests/unit/test_cli/test_tool_commands.py +++ b/tests/unit/test_cli/test_tool_commands.py @@ -56,9 +56,9 @@ class TestSetToolStructuredQuery: collection="sales_data", template=None, arguments=[], - group=[], + group=None, state=None, - applicable_states=[] + applicable_states=None ) captured = capsys.readouterr() @@ -93,9 +93,9 @@ class TestSetToolStructuredQuery: collection=None, # No collection specified template=None, arguments=[], - group=[], + group=None, state=None, - applicable_states=[] + applicable_states=None ) captured = capsys.readouterr() @@ -133,9 +133,9 @@ class TestSetToolStructuredQuery: collection='sales_data', template=None, arguments=[], - group=[], + group=None, state=None, - applicable_states=[] + applicable_states=None ) def test_set_main_structured_query_no_arguments_needed(self):