Skip to content

Commit

Permalink
test(test_prompt_factory.py): fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
krrishdholakia committed Jul 4, 2024
1 parent a3e9bc4 commit d66d353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litellm/tests/test_prompt_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_anthropic_messages_pt():
messages = []
with pytest.raises(Exception) as err:
anthropic_messages_pt(messages)
assert "Invalid first message." in str(err.value)
assert "Invalid first message" in str(err.value)


# codellama_prompt_format()
Expand Down

0 comments on commit d66d353

Please sign in to comment.