From 28bc4fe05bcee3050a05931a99868e8ff4134019 Mon Sep 17 00:00:00 2001 From: Jaimin Godhani <112328542+Jai0401@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:06:01 +0530 Subject: [PATCH] Improve: consistency in the test_memory.py (#1777) --- tests/test_memory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_memory.py b/tests/test_memory.py index d7cf8058..9c1c6003 100644 --- a/tests/test_memory.py +++ b/tests/test_memory.py @@ -42,13 +42,13 @@ def test_delete_memory(memory_store): @pytest.mark.skip(reason="Not implemented") def test_history(memory_store): - data = "I like indian food." + data = "I like Indian food." memory_id = memory_store.create(data=data) history = memory_store.history(memory_id) assert history == [data] assert memory_store.get(memory_id) == data - new_data = "I like italian food." + new_data = "I like Italian food." memory_store.update(memory_id, new_data) history = memory_store.history(memory_id) assert history == [data, new_data]