Update chat memory test scenarios with new details

This commit is contained in:
2026-06-15 22:36:21 +02:00
parent 5c578a7b84
commit a0a103dacd

View File

@@ -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()