From 8e0c9217b29afadc0fcd13e8c5ab57a16c91d94a Mon Sep 17 00:00:00 2001 From: shihanwan Date: Sat, 12 Oct 2024 13:02:27 -0400 Subject: [PATCH] fix recall test --- tests/core/test_recall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/test_recall.py b/tests/core/test_recall.py index cebfa66..2538cf7 100644 --- a/tests/core/test_recall.py +++ b/tests/core/test_recall.py @@ -79,7 +79,7 @@ def test_fetch_all_memory(mock_find_all, mock_llm, mock_store, id, data_graph): mock_llm.prompt.assert_called_once_with( prompt_name="summarize_memory", - context=None, + context="", memory=all_memory, )