Fix tests

This commit is contained in:
Cyber MacGeddon 2025-12-04 21:03:52 +00:00
parent ff9d74ef79
commit 2a77c4eb6f
2 changed files with 15 additions and 8 deletions

View file

@ -135,7 +135,8 @@ class TestSetToolStructuredQuery:
arguments=[],
group=None,
state=None,
applicable_states=None
applicable_states=None,
token=None
)
def test_set_main_structured_query_no_arguments_needed(self):
@ -313,7 +314,7 @@ class TestShowToolsStructuredQuery:
show_main()
mock_show.assert_called_once_with(url='http://custom.com')
mock_show.assert_called_once_with(url='http://custom.com', token=None)
class TestStructuredQueryToolValidation: