langgraph: actually fix flaky test (#3219)

This commit is contained in:
Vadym Barda
2025-01-27 16:06:31 -05:00
committed by GitHub
parent 554e763994
commit a910a1a341
+2 -2
View File
@@ -6300,9 +6300,9 @@ def test_named_tasks_functional() -> None:
@entrypoint()
def workflow(inputs: dict) -> dict:
fut_foo = foo(inputs)
foo_result = foo(inputs).result()
other_foo(inputs).result()
fut_bar = bar(fut_foo.result())
fut_bar = bar(foo_result)
fut_baz = baz_task(fut_bar.result())
fut_custom_baz = custom_baz_task(fut_baz.result())
fut_qux = qux_task(fut_custom_baz.result())