From a0a103dacda1fd5813ef3b0b76d015faec8e1468 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 15 Jun 2026 22:36:21 +0200 Subject: [PATCH] Update chat memory test scenarios with new details --- backend/tests/test_chat_memory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/tests/test_chat_memory.py b/backend/tests/test_chat_memory.py index dd42dab..840fe4e 100644 --- a/backend/tests/test_chat_memory.py +++ b/backend/tests/test_chat_memory.py @@ -79,7 +79,7 @@ class ChatMemoryTests(unittest.TestCase): def test_resync_removes_stale_turn_content(self): db = self.Session() try: - session = self._turn(db, "past", "Old Decision", "backend sidecar", "Keep using the old sidecar plan.") + session = self._turn(db, "past", "Old Decision", "deployment detail", "Keep using the banana corridor plan.") db.commit() sync_all_chat_memory(db) @@ -88,7 +88,7 @@ class ChatMemoryTests(unittest.TestCase): db.commit() sync_chat_memory_for_session(db, session.session_id) - context = build_chat_memory_context(db, "old sidecar plan") + context = build_chat_memory_context(db, "banana corridor plan") finally: db.close()