From dd64de186535c09cb7774240470b93e1bbe17550 Mon Sep 17 00:00:00 2001 From: Ben Burns <803016+benjamincburns@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:15:12 +1300 Subject: [PATCH] fix invalid getTuple test (supply thread_id) --- libs/checkpoint-validation/src/spec/getTuple.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libs/checkpoint-validation/src/spec/getTuple.ts b/libs/checkpoint-validation/src/spec/getTuple.ts index 374d942c..2ccd0bb4 100644 --- a/libs/checkpoint-validation/src/spec/getTuple.ts +++ b/libs/checkpoint-validation/src/spec/getTuple.ts @@ -239,7 +239,13 @@ export function getTupleTests( it("should return undefined if the checkpoint_id is not found", async () => { const configWithInvalidCheckpointId = mergeConfigs( initializerConfig, - { configurable: { checkpoint_ns, checkpoint_id: uuid6(-3) } } + { + configurable: { + thread_id: uuid6(-3), + checkpoint_ns, + checkpoint_id: uuid6(-3), + }, + } ); const checkpointTuple = await saver.getTuple( configWithInvalidCheckpointId