Skip to content

Commit

Permalink
bug fix: logging test may fail if some config fails (microsoft#1695)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheng-tan authored Feb 15, 2024
1 parent 52d5641 commit 5170323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/agentchat/test_agent_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_two_agents_logging(db_connection):
cur.execute(CHAT_COMPLETIONS_QUERY)
rows = cur.fetchall()

assert len(rows) == 3
assert len(rows) >= 3 # some config may fail
session_id = rows[0]["session_id"]

for idx, row in enumerate(rows):
Expand Down

0 comments on commit 5170323

Please sign in to comment.