Commit 60bf7e9e authored by Antoine Pitrou's avatar Antoine Pitrou

Relax timing check (seen a buildbot failure on this)

parent 2f5cac6a
......@@ -1088,7 +1088,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