Skip to content

Commit

Permalink
Fix flaky test output order (#3045)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos authored Jan 15, 2025
2 parents f1ee650 + b7e4656 commit 4426552
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libs/langgraph/tests/test_pregel_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -2456,6 +2456,7 @@ async def test_imp_task(checkpointer_name: str) -> None:
async def mapper(input: int) -> str:
nonlocal mapper_calls
mapper_calls += 1
await asyncio.sleep(0.1 * input)
return str(input) * 2

@entrypoint(checkpointer=checkpointer)
Expand Down

0 comments on commit 4426552

Please sign in to comment.