From adff1df813a4467b81a6624f9fbf08b13d5ee6ae Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Mon, 27 Jan 2025 13:11:17 -0500 Subject: [PATCH] langgraph: fix flaky test (#3218) --- libs/langgraph/tests/test_pregel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langgraph/tests/test_pregel.py b/libs/langgraph/tests/test_pregel.py index 5716c65fb..e0a4be241 100644 --- a/libs/langgraph/tests/test_pregel.py +++ b/libs/langgraph/tests/test_pregel.py @@ -6301,7 +6301,7 @@ def test_named_tasks_functional() -> None: @entrypoint() def workflow(inputs: dict) -> dict: fut_foo = foo(inputs) - other_foo(inputs) + other_foo(inputs).result() fut_bar = bar(fut_foo.result()) fut_baz = baz_task(fut_bar.result()) fut_custom_baz = custom_baz_task(fut_baz.result())