Skip to content

Commit 315f8c9

Browse files
committed
fixes
1 parent 37bc9bf commit 315f8c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_async_convai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async def test_async_conversation_with_auth():
141141
await conversation.wait_for_session_end()
142142

143143
# Assertions
144-
mock_client.conversational_ai.conversations.get_signed_url.assert_called_once_with(agent_id=TEST_AGENT_ID)
144+
mock_client.conversational_ai.conversations.get_signed_url.assert_called_once_with(agent_id=TEST_AGENT_ID, environment=None)
145145

146146

147147
@pytest.mark.asyncio

tests/test_convai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def test_conversation_with_auth():
129129
conversation.wait_for_session_end()
130130

131131
# Assertions
132-
mock_client.conversational_ai.conversations.get_signed_url.assert_called_once_with(agent_id=TEST_AGENT_ID)
132+
mock_client.conversational_ai.conversations.get_signed_url.assert_called_once_with(agent_id=TEST_AGENT_ID, environment=None)
133133

134134

135135
def test_conversation_with_dynamic_variables():

0 commit comments

Comments
 (0)