From 20def3805cb41a12e1bb84eb3f6fe5e22cd155ee Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 23 Feb 2024 22:57:20 -0800 Subject: [PATCH] test(test_openai_endpoints.py): fix test --- tests/test_openai_endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_openai_endpoints.py b/tests/test_openai_endpoints.py index fefb4243f..0d15c598b 100644 --- a/tests/test_openai_endpoints.py +++ b/tests/test_openai_endpoints.py @@ -97,10 +97,10 @@ async def test_chat_completion_old_key(): """ async with aiohttp.ClientSession() as session: try: - key = "sk-yNXvlRO4SxIGG0XnRMYxTw" + key = "sk-ecMXHujzUtKCvHcwacdaTw" await chat_completion(session=session, key=key) except Exception as e: - key = "sk-2KV0sAElLQqMpLZXdNf3yw" # try diff db key (in case db url is for the other db) + key = "sk-ecMXHujzUtKCvHcwacdaTw" # try diff db key (in case db url is for the other db) await chat_completion(session=session, key=key)