mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
fix: remove unused variable to resolve lint error
Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
@@ -314,7 +314,7 @@ def test_search_with_agent_id_in_config(mem0_storage_with_memory_client_using_co
|
||||
mock_results = {"results": [{"score": 0.9, "content": "Result 1"}]}
|
||||
mem0_storage.memory.search = MagicMock(return_value=mock_results)
|
||||
|
||||
results = mem0_storage.search("test query")
|
||||
mem0_storage.search("test query")
|
||||
|
||||
call_args = mem0_storage.memory.search.call_args[1]
|
||||
assert "agent_id" in call_args
|
||||
|
||||
Reference in New Issue
Block a user