Skip to content

Commit 5ca69da

Browse files
authored
bug fix: logging test may fail if some config fails (#1695)
1 parent a52f52a commit 5ca69da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/agentchat/test_agent_logging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_two_agents_logging(db_connection):
8888
cur.execute(CHAT_COMPLETIONS_QUERY)
8989
rows = cur.fetchall()
9090

91-
assert len(rows) == 3
91+
assert len(rows) >= 3 # some config may fail
9292
session_id = rows[0]["session_id"]
9393

9494
for idx, row in enumerate(rows):

0 commit comments

Comments
 (0)