From c04cad208c43667b8e844d489e15c62ca1cd470e Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 30 Oct 2023 20:21:40 -0700 Subject: [PATCH] test(test_sentry.py): fix testing --- litellm/tests/test_sentry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/tests/test_sentry.py b/litellm/tests/test_sentry.py index b85336e019..be53a9ca4c 100644 --- a/litellm/tests/test_sentry.py +++ b/litellm/tests/test_sentry.py @@ -30,6 +30,7 @@ def test_exception_tracking(): except Exception as e: print("got_exception") print(e) + os.environ["OPENAI_API_KEY"] = old_api_key test_exception_tracking()