From 6e91e05324ace1788b3d2b5457743169becdd74a Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Mon, 9 Dec 2024 11:08:20 -0800 Subject: [PATCH] x --- python/tests/integration_tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/integration_tests/test_client.py b/python/tests/integration_tests/test_client.py index 338ab482d..d808adbfe 100644 --- a/python/tests/integration_tests/test_client.py +++ b/python/tests/integration_tests/test_client.py @@ -507,7 +507,7 @@ def test_upsert_examples_multipart(langchain_client: Client) -> None: assert created_example_1.outputs is None created_example_2 = langchain_client.read_example( - [id_ for id_ in created_examples["example_ids"] if id_ != example_id][0] + [id_ for id_ in created_examples["example_ids"] if id_ != str(example_id)][0] ) assert created_example_2.inputs["text"] == "foo bar" assert created_example_2.outputs["response"] == "baz"