From fdec67b7713558eb1a9db890dc31cf06299225d1 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Mon, 8 Sep 2025 21:40:52 +0100 Subject: [PATCH] Fix tests --- tests/unit/test_cli/test_tool_commands.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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):