diff --git a/litellm/tests/test_exceptions.py b/litellm/tests/test_exceptions.py index a00e5bc650..e473af80ad 100644 --- a/litellm/tests/test_exceptions.py +++ b/litellm/tests/test_exceptions.py @@ -198,7 +198,7 @@ def test_completion_azure_exception(): pytest.fail(f"Error occurred: {e}") test_completion_azure_exception() -async def test_completion_azure_exception(): +async def asynctest_completion_azure_exception(): try: import openai import litellm @@ -229,7 +229,7 @@ async def test_completion_azure_exception(): import asyncio asyncio.run( - test_completion_azure_exception() + asynctest_completion_azure_exception() )