1 parent 2a8ef6c commit e75f282Copy full SHA for e75f282
1 file changed
tests/test_cache_comprehensive.py
@@ -1117,7 +1117,7 @@ async def test_l1_cache_full_lifecycle(self):
1117
mock_redis.exists = AsyncMock(return_value=True)
1118
mock_redis.ttl = AsyncMock(return_value=60)
1119
mock_redis.info = AsyncMock(return_value={"keyspace_hits": 100, "keyspace_misses": 10})
1120
- mock_redis.aclose = AsyncMock()
+ mock_redis.close = AsyncMock()
1121
1122
with patch("redis.asyncio.Redis", return_value=mock_redis):
1123
await cache.initialize()
0 commit comments