From f617f5ebb54d3ca06d3a37582c7102d953514dc0 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 12 Apr 2024 20:37:56 -0700 Subject: [PATCH] fix - test caching atext_completion --- litellm/tests/test_caching.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/litellm/tests/test_caching.py b/litellm/tests/test_caching.py index 80dc91222..ae7bb4289 100644 --- a/litellm/tests/test_caching.py +++ b/litellm/tests/test_caching.py @@ -734,8 +734,7 @@ async def test_redis_cache_atext_completion(): print(response2) - assert response1 == response2 - assert response1.choices == response2.choices + assert response1.id == response2.id except Exception as e: print(f"{str(e)}\n\n{traceback.format_exc()}") raise e