Skip to content

Commit

Permalink
Merge branch 'isaac/multipartstuff' into isaac/addattachmentsevaluator
Browse files Browse the repository at this point in the history
  • Loading branch information
isahers1 authored Dec 9, 2024
2 parents 9289225 + 6e91e05 commit 8986216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/integration_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8986216

Please sign in to comment.