langgraph: fix flaky test (#3218)

This commit is contained in:
Vadym Barda
2025-01-27 13:11:17 -05:00
committed by GitHub
parent 64b828def6
commit adff1df813
+1 -1
View File
@@ -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())