From 5aa49ad0994d8dc5922a08256bda85efcbbf1bd3 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 25 Nov 2024 21:35:13 -0800 Subject: [PATCH] test_redis_with_ssl --- tests/local_testing/test_caching_ssl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/local_testing/test_caching_ssl.py b/tests/local_testing/test_caching_ssl.py index 98c3335de..5dc4bdbbf 100644 --- a/tests/local_testing/test_caching_ssl.py +++ b/tests/local_testing/test_caching_ssl.py @@ -112,9 +112,9 @@ async def test_redis_with_ssl(): # Get the connection pool with SSL pool = get_redis_connection_pool( - host=os.environ.get("REDIS_HOST"), - port=os.environ.get("REDIS_PORT"), - password=os.environ.get("REDIS_PASSWORD"), + host=os.environ.get("REDIS_HOST_WITH_SSL"), + port=os.environ.get("REDIS_PORT_WITH_SSL"), + password=os.environ.get("REDIS_PASSWORD_WITH_SSL"), ssl=None, )