Skip to content

Commit a1ce476

Browse files
committed
name
1 parent 3723208 commit a1ce476

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/service-library/tests/redis/test_client_reconection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ async def test_redis_client_sdk_lost_connection(
2727

2828
assert await redis_client_sdk.ping() is True
2929
# no connection available any longer should not hang but timeout
30-
for rabbit_docker_service in (
30+
for redis_docker_service in (
3131
docker_service
3232
for docker_service in docker_client.services.list()
3333
if "redis" in docker_service.name # type: ignore
3434
):
35-
rabbit_docker_service.remove() # type: ignore
35+
redis_docker_service.remove() # type: ignore
3636

3737
# check that connection was lost
3838
async for attempt in AsyncRetrying(

0 commit comments

Comments
 (0)