tests: Reduce time for polling in functional tests

Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Joseph Nuthalapati 2018-10-03 11:42:54 -07:00 committed by James Valleroy
parent c83a3cd22e
commit a214e64175
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -49,13 +49,14 @@ def is_not_running(browser, service_name):
def eventually(function, args=[], timeout=30):
"""Execute a function returning a boolean expression till it returns
True or a timeout is reached"""
counter = 1
while counter < timeout:
waited_time = 0
while waited_time < timeout:
if function(*args):
return True
else:
counter += 1
sleep(1)
sleep(0.1)
waited_time += 0.1
return False