From b76dc8ae0a209fcf906216d6fcd4ef1b796f2bbe Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Tue, 8 Apr 2025 14:15:13 -0700 Subject: [PATCH] Fix --- libs/langgraph/tests/test_pregel_async.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/langgraph/tests/test_pregel_async.py b/libs/langgraph/tests/test_pregel_async.py index 20e2b96b5..81f3c2289 100644 --- a/libs/langgraph/tests/test_pregel_async.py +++ b/libs/langgraph/tests/test_pregel_async.py @@ -5533,8 +5533,8 @@ async def test_subgraph_checkpoint_true_interrupt( def node_1(state: ParentState): return {"foo": "hi! " + state["foo"]} - async def node_2(state: ParentState): - response = await subgraph.ainvoke({"bar": state["foo"]}) + async def node_2(state: ParentState, config: RunnableConfig): + response = await subgraph.ainvoke({"bar": state["foo"]}, config) return {"foo": response["bar"]} builder = StateGraph(ParentState)