From 688733673890fec3bd2be5d536f4f2e27cc1d539 Mon Sep 17 00:00:00 2001 From: Martin Bernstorff Date: Mon, 29 Jan 2024 19:31:25 +0000 Subject: [PATCH] test: update test_highlights_to_questions.py --- memorymarker/domain/test_highlights_to_questions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memorymarker/domain/test_highlights_to_questions.py b/memorymarker/domain/test_highlights_to_questions.py index 01609f9..f2267e6 100644 --- a/memorymarker/domain/test_highlights_to_questions.py +++ b/memorymarker/domain/test_highlights_to_questions.py @@ -47,12 +47,14 @@ async def test_multi_response(model: h2q.ChatOpenAI) -> None: highlight="Mitochondria", uri="https://en.wikipedia.org/wiki/Mitochondrion", title="Mitochondrion - Wikipedia", + updated_at=datetime.now(), ), HydratedHighlight( context="The first rule of Fight Club is that you don't talk about Fight Club", highlight="Fight Club", uri="https://en.wikipedia.org/wiki/Fight_Club", title="Fight Club - Wikipedia", + updated_at=datetime.now(), ), ] output = await h2q.highlights_to_questions(model, highlights)