From cc24a930095e2957f47c5ae539b5c215d28d1992 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 25 Jul 2025 12:44:08 +0000 Subject: [PATCH] fix: remove unused variable to resolve lint error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João --- tests/storage/test_mem0_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/storage/test_mem0_storage.py b/tests/storage/test_mem0_storage.py index ac7e83a4a..5a36bbb4b 100644 --- a/tests/storage/test_mem0_storage.py +++ b/tests/storage/test_mem0_storage.py @@ -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