diff --git a/lib/crewai/tests/agents/agent_adapters/test_base_tool_adapter.py b/lib/crewai/tests/agents/agent_adapters/test_base_tool_adapter.py index 3003d92c3..81f7555bc 100644 --- a/lib/crewai/tests/agents/agent_adapters/test_base_tool_adapter.py +++ b/lib/crewai/tests/agents/agent_adapters/test_base_tool_adapter.py @@ -71,12 +71,12 @@ def test_tools_method_empty(): def test_sanitize_tool_name_with_spaces(): adapter = ConcreteToolAdapter() - assert adapter.sanitize_tool_name("Tool With Spaces") == "Tool_With_Spaces" + assert adapter.sanitize_tool_name("Tool With Spaces") == "tool_with_spaces" def test_sanitize_tool_name_without_spaces(): adapter = ConcreteToolAdapter() - assert adapter.sanitize_tool_name("ToolWithoutSpaces") == "ToolWithoutSpaces" + assert adapter.sanitize_tool_name("ToolWithoutSpaces") == "tool_without_spaces" def test_sanitize_tool_name_empty():