From eae1faa6560e90a51b2416a73731ed2d43cc32ae Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Mon, 17 Mar 2025 20:12:33 -0700 Subject: [PATCH] Fix --- libs/langgraph/tests/test_pregel_async.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/langgraph/tests/test_pregel_async.py b/libs/langgraph/tests/test_pregel_async.py index e97b8e164..a42a84a28 100644 --- a/libs/langgraph/tests/test_pregel_async.py +++ b/libs/langgraph/tests/test_pregel_async.py @@ -938,7 +938,7 @@ async def test_copy_checkpoint(checkpointer_name: str) -> None: async for c in tool_two.astream( {"my_key": "value ⛰️", "market": "DE"}, thread2 ) - ] == [ + ] == UnsortedSequence( { "__interrupt__": ( Interrupt( @@ -951,7 +951,7 @@ async def test_copy_checkpoint(checkpointer_name: str) -> None: { "tool_one": {"my_key": " one"}, }, - ] + ) # resume with answer assert [ c async for c in tool_two.astream(Command(resume=" my answer"), thread2)