Skip to content

Commit

Permalink
tests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
singhk97 committed Oct 30, 2024
1 parent 71615a2 commit 3611774
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ async def test_create_openai_assistant(self, mock_async_openai):
params = beta.AssistantCreateParams(model="123")

assistant = await AssistantsPlanner.create_assistant(
api_key="", api_version="", organization="", endpoint="", request=params
api_key="", azure_ad_token_provider=None, api_version="", organization="", endpoint="", request=params
)

self.assertTrue(mock_async_openai.called)
Expand All @@ -573,6 +573,7 @@ async def test_create_azure_openai_assistant(self, mock_async_azure_openai):

assistant = await AssistantsPlanner.create_assistant(
api_key="",
azure_ad_token_provider=None,
api_version="",
organization="",
endpoint="this is my endpoint",
Expand Down

0 comments on commit 3611774

Please sign in to comment.