chore: ran linter and formatter

This commit is contained in:
2025-12-27 19:41:22 +01:00
parent 6195abbaa5
commit 3880a4ec49
5 changed files with 21 additions and 21 deletions

View File

@@ -15,9 +15,9 @@ class TestPromptBuilderToolsInjection:
# Verify each tool is mentioned
for tool_name in tools.keys():
assert (
tool_name in prompt
), f"Tool {tool_name} not mentioned in system prompt"
assert tool_name in prompt, (
f"Tool {tool_name} not mentioned in system prompt"
)
def test_tools_spec_contains_all_registered_tools(self, memory):
"""CRITICAL: Verify build_tools_spec() returns all tools."""