From 659c9881cf2cee6db5e755fe64bfce7295511eeb Mon Sep 17 00:00:00 2001 From: vbarda Date: Wed, 7 Aug 2024 19:54:45 -0400 Subject: [PATCH] cleanup --- libs/langgraph/tests/test_pregel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/langgraph/tests/test_pregel.py b/libs/langgraph/tests/test_pregel.py index 59a401bad..658c806ab 100644 --- a/libs/langgraph/tests/test_pregel.py +++ b/libs/langgraph/tests/test_pregel.py @@ -9396,5 +9396,4 @@ def test_channel_values(request: pytest.FixtureRequest, checkpointer_name: str) checkpointer=checkpointer, ) app.invoke({"input": 1, "ephemeral": "meow"}, config) - # assert checkpointer.get(config)["channel_values"] == {"input": 1, "output": 1} - print([c.checkpoint["channel_values"] for c in checkpointer.list(config)]) + assert checkpointer.get(config)["channel_values"] == {"input": 1, "output": 1}