From eab12e47df6e57a0d54b5f81b4d46df317dff8ab Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 2 Apr 2025 21:54:35 -0700 Subject: [PATCH] test_redis_caching_llm_caching_ttl --- tests/local_testing/test_caching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/local_testing/test_caching.py b/tests/local_testing/test_caching.py index 30feb09f9d..43dafd7293 100644 --- a/tests/local_testing/test_caching.py +++ b/tests/local_testing/test_caching.py @@ -2342,7 +2342,7 @@ async def test_redis_caching_llm_caching_ttl(sync_mode): # Verify that the set method was called on the mock Redis instance mock_redis_instance.set.assert_called_once_with( - name="test", value='"test_value"', ex=120 + name="test", value='"test_value"', ex=120, nx=False ) ## Increment cache