Remove a 9 from overly high timeouts

This commit is contained in:
Hugh Bellamy
2017-03-31 09:58:39 +07:00
parent ae220c4025
commit aa70ea8fdd
3 changed files with 5 additions and 5 deletions

View File

@@ -126,7 +126,7 @@ def main():
covering_tests = set().union(*pool.map_async(
worker,
enumerate(relevant_changes)
).get(9999999))
).get(999999))
logging.info('Combined covering tests:')
for covering_test in covering_tests: