diff --git a/sdk/openai/azure-openai/tests/test_assistants.py b/sdk/openai/azure-openai/tests/test_assistants.py index 41db303f0460..3fed8f4c08aa 100644 --- a/sdk/openai/azure-openai/tests/test_assistants.py +++ b/sdk/openai/azure-openai/tests/test_assistants.py @@ -193,7 +193,7 @@ def handle_run_failure(self, run: Run): @configure @pytest.mark.parametrize( "api_type, api_version", - [(ASST_AZURE, PREVIEW), (GPT_4_OPENAI, "v1")] + [(ASST_AZURE, PREVIEW)] ) def test_assistants_crud(self, client, api_type, api_version, **kwargs): diff --git a/sdk/openai/azure-openai/tests/test_assistants_async.py b/sdk/openai/azure-openai/tests/test_assistants_async.py index 387ae756854b..d8f313ae786c 100644 --- a/sdk/openai/azure-openai/tests/test_assistants_async.py +++ b/sdk/openai/azure-openai/tests/test_assistants_async.py @@ -193,7 +193,7 @@ def handle_run_failure(self, run: Run): @pytest.mark.asyncio @pytest.mark.parametrize( "api_type, api_version", - [(ASST_AZURE, PREVIEW), (GPT_4_OPENAI, "v1")] + [(ASST_AZURE, PREVIEW)] ) async def test_assistants_crud(self, client_async, api_type, api_version, **kwargs): try: