Skip to content

Commit 6ce1a41

Browse files
committed
Address PR comments
Signed-off-by: Sergio Herrera <627709+seherv@users.noreply.github.com>
1 parent a0ca773 commit 6ce1a41

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/integration/test_conversation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@ def test_converse_alpha2_with_mixed_messages(client):
6868
)
6969
],
7070
)
71-
assert response.outputs[0].choices[0].message.content
71+
choice = response.outputs[0].choices[0]
72+
assert choice.message.content == 'be brief\nhi\nhello'
73+
assert choice.finish_reason == 'stop'

0 commit comments

Comments
 (0)