Fix unused variable in test_process
This commit is contained in:
parent
5abaa94d42
commit
1d82774c96
|
@ -79,7 +79,7 @@ class TestProcess(TestProcessProto):
|
||||||
if c.status == 'ESTABLISHED']
|
if c.status == 'ESTABLISHED']
|
||||||
|
|
||||||
def continue_check_limit(extra_time):
|
def continue_check_limit(extra_time):
|
||||||
for t in range(extra_time * 2):
|
for _ in range(extra_time * 2):
|
||||||
self.assertLessEqual(
|
self.assertLessEqual(
|
||||||
len(connections()),
|
len(connections()),
|
||||||
# shared.outgoing_connections, one listening
|
# shared.outgoing_connections, one listening
|
||||||
|
@ -90,7 +90,7 @@ class TestProcess(TestProcessProto):
|
||||||
' by --connection-limit')
|
' by --connection-limit')
|
||||||
time.sleep(1)
|
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:
|
if len(connections()) > self._connection_limit / 2:
|
||||||
_time_to_connect = round(time.time() - _started)
|
_time_to_connect = round(time.time() - _started)
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue
Block a user