From 2f0b00172ec8d91f2cf77f45393794799be621bb Mon Sep 17 00:00:00 2001 From: Daniel M Date: Tue, 30 Jul 2024 18:22:05 -0400 Subject: [PATCH] fix:remove failing test on redis-py 5.0.8 --- test/test_asyncredis.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/test_asyncredis.py b/test/test_asyncredis.py index 6c8386f8..9ceacf34 100644 --- a/test/test_asyncredis.py +++ b/test/test_asyncredis.py @@ -165,15 +165,6 @@ async def test_failed_script_error7(self, async_redis): await async_redis.eval('return redis.call("ZCOUNT", KEYS[1])', 1, "foo") -@fake_only -@testtools.run_test_if_redispy_ver("lt", "5.1.0b1") -async def test_repr_redis_until_51(async_redis: redis.asyncio.Redis): - assert re.fullmatch( - r"ConnectionPool,db=0>>", - repr(async_redis.connection_pool), - ) - - @testtools.run_test_if_redispy_ver("gte", "5.1") async def test_repr_redis_51(async_redis: redis.asyncio.Redis): assert re.fullmatch(