Skip to content

Commit 214695c

Browse files
committed
lint
1 parent d279e52 commit 214695c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_asyncio/test_cluster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ async def test_host_port_remap(self, create_redis, redis_addr):
884884

885885
def host_port_remap(host, port):
886886
# remap first three nodes to our local proxy
887-
old = host, port
887+
# old = host, port
888888
if int(port) in ports:
889889
host, port = "127.0.0.1", int(port) + offset
890890
# print(f"{old} {host, port}")

tests/test_cluster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ def test_host_port_remap(self, request, redis_addr):
917917

918918
def host_port_remap(host, port):
919919
# remap first three nodes to our local proxy
920-
old = host, port
920+
# old = host, port
921921
if int(port) in ports:
922922
host, port = "127.0.0.1", int(port) + offset
923923
# print(f"{old} {host, port}")

0 commit comments

Comments
 (0)