Skip to content

Commit c956d8e

Browse files
committed
fix: test failing due to sampling copy
1 parent f8f3e03 commit c956d8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/stdlib_basics/test_session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ async def test_async_await_with_chat_context(m_session):
7474

7575
m1 = Message(role="user", content="1")
7676
m2 = Message(role="user", content="2")
77-
r1 = await m_session.aact(m1)
78-
r2 = await m_session.aact(m2)
77+
r1 = await m_session.aact(m1, strategy=None)
78+
r2 = await m_session.aact(m2, strategy=None)
7979

8080
# This should be the order of these items in the session's context.
8181
history = [r2, m2, r1, m1]

0 commit comments

Comments
 (0)