Relax the condition in TestProcess.test_connections() a bit

This commit is contained in:
Lee Miller 2024-07-09 00:39:41 +03:00
parent c6b5f490d9
commit 425abe8a93
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63

View File

@ -104,7 +104,7 @@ class TestProcess(TestProcessProto):
time.sleep(1)
for _ in range(self._wait_time * 2):
if len(self.connections()) > self._connection_limit / 2:
if len(self.connections()) >= self._connection_limit / 2:
_time_to_connect = round(time.time() - _started)
break
if '--i2p' not in self._process_cmd: