Skip to content

Commit

Permalink
Fix invalid test from test_models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvallejosdev committed Apr 10, 2024
1 parent c0b40d6 commit 25144e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_chat_completion_invalid_messages(model):
response = model.chat_completion(messages)
assert response["status"] == "error"
assert response["role"] == "program"
assert "Messages should not be empty" in response["content"]
assert "Messages should be a list" in response["content"]


def test_chat_completion_api_error(model):
Expand Down

0 comments on commit 25144e0

Please sign in to comment.