From 2c4f52b6b150af570a71a31c9300e958e0d82447 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 25 Nov 2023 15:46:07 -0800 Subject: [PATCH] (fix) linting --- litellm/tests/test_exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() )