Merge "Increase event timeouts in git tests"

This commit is contained in:
Zuul 2019-03-25 20:32:19 +00:00 committed by Gerrit Code Review
commit 039d1dd625
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class TestGitDriver(ZuulTestCase):
def waitForEvent(self, initial_count=0):
delay = 0.1
max_delay = 1
max_delay = 5
while self.git_connection.watcher_thread._event_count <= initial_count:
time.sleep(delay)
max_delay -= delay