Skip to content

Commit c1eea2d

Browse files
authored
Update test assertion message content
1 parent 47a1024 commit c1eea2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unittests/models/test_litellm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -979,14 +979,14 @@ async def test_generate_content_async_adds_fallback_user_message(
979979
]
980980
assert any(
981981
message.get("content")
982-
== "Handle the requests as specified in the System Instruction."
982+
== "Handle the incoming request according to the provided requirements."
983983
for message in user_messages
984984
)
985985
assert (
986986
sum(1 for content in llm_request.contents if content.role == "user") == 1
987987
)
988988
assert llm_request.contents[-1].parts[0].text == (
989-
"Handle the requests as specified in the System Instruction."
989+
"Handle the incoming request according to the provided requirements."
990990
)
991991

992992

0 commit comments

Comments
 (0)