Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudotensor committed Jun 17, 2024
1 parent 235ba1a commit c313dc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "f59d30e91ceadc444985f95b682d473f75a49b88"
__version__ = "235ba1aae973ad7f12c04d33ce3c186ffd05b317"
4 changes: 2 additions & 2 deletions tests/test_client_calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6061,9 +6061,9 @@ def test_client1_image_qa(langchain_action, langchain_mode, base_model):
response = response.choices[0].message.content
print(response)
if isinstance(expected, list):
assert any(x in response for x in expected), "%s %s" % (url, response)
assert any(x in response for x in expected), "%s" % response
else:
assert expected in response, "%s %s" % (url, response)
assert expected in response, "%s" % response


def get_creation_date(file_path):
Expand Down

0 comments on commit c313dc0

Please sign in to comment.