Commit 732110ab authored by Antoine Pitrou's avatar Antoine Pitrou

Relax timing check (seen a buildbot failure on this)

parents 6ced7c43 60bf7e9e
......@@ -1100,7 +1100,7 @@ class _TestPool(BaseTestCase):
self.pool.terminate()
join = TimingWrapper(self.pool.join)
join()
self.assertTrue(join.elapsed < 0.2)
self.assertTrue(join.elapsed < 0.5)
def raising():
raise KeyError("key")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment