Fix unused variable in test_process

This commit is contained in:
Lee Miller 2023-08-02 05:17:58 +03:00
parent 5abaa94d42
commit 1d82774c96
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class TestProcess(TestProcessProto):
if c.status == 'ESTABLISHED']
def continue_check_limit(extra_time):
for t in range(extra_time * 2):
for _ in range(extra_time * 2):
self.assertLessEqual(
len(connections()),
# shared.outgoing_connections, one listening
@ -90,7 +90,7 @@ class TestProcess(TestProcessProto):
' by --connection-limit')
time.sleep(1)
for t in range(self._wait_time * 2):
for _ in range(self._wait_time * 2):
if len(connections()) > self._connection_limit / 2:
_time_to_connect = round(time.time() - _started)
break