From f9cdfd3ac4fbdb9f477699d676b1fa5d5eb3ccbf Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 10 Dec 2024 11:54:43 -0500 Subject: [PATCH] x --- libs/langgraph/tests/test_pregel.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/langgraph/tests/test_pregel.py b/libs/langgraph/tests/test_pregel.py index 276dcd141..6c2a20f63 100644 --- a/libs/langgraph/tests/test_pregel.py +++ b/libs/langgraph/tests/test_pregel.py @@ -14940,9 +14940,8 @@ def test_command_with_static_breakpoints( # Start the graph and interrupt at the first node graph.invoke({"foo": "abc"}, config) - result = graph.invoke(Command(update={"foo": "def"}), config) - assert result == {"foo": "def|node-1|node-2"} - + result = graph.invoke(Command(resume="node1"), config) + assert result == {"foo": "abc|node-1|node-2"} @pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC) def test_multistep_plan(request: pytest.FixtureRequest, checkpointer_name: str):