mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
langgraph: actually fix flaky test (#3219)
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user