Skip to content

Commit 127d2f0

Browse files
committed
lint
1 parent bbc1c03 commit 127d2f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_asyncio/test_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ async def test_host_port_remap(self, create_redis, redis_addr):
886886

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

tests/test_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def test_host_port_remap(self, request, redis_addr):
919919

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

0 commit comments

Comments
 (0)