From d6b4ee348fe9c5fc6a1e7e14ebd71596faf80da6 Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Tue, 22 Apr 2025 17:32:13 -0700 Subject: [PATCH] goodness, last test fix --- libs/langgraph/tests/test_pregel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/langgraph/tests/test_pregel.py b/libs/langgraph/tests/test_pregel.py index 316d44817..54a7d07cc 100644 --- a/libs/langgraph/tests/test_pregel.py +++ b/libs/langgraph/tests/test_pregel.py @@ -5469,9 +5469,9 @@ def test_interrupt_task_functional( return baz_result # First run, interrupted at bar - assert not graph.invoke({"a": ""}, config) + graph.invoke({"a": ""}, config) # Provide resumes - assert not graph.invoke(Command(resume="bar"), config) + graph.invoke(Command(resume="bar"), config) assert graph.invoke(Command(resume="baz"), config) == {"a": "foobarbaz"}