mirror of
https://github.com/python/cpython.git
synced 2025-11-07 09:02:02 +00:00
Relax timing check (seen a buildbot failure on this)
This commit is contained in:
parent
2f5cac6ab4
commit
60bf7e9e4d
1 changed files with 1 additions and 1 deletions
|
|
@ -1088,7 +1088,7 @@ def test_terminate(self):
|
||||||
self.pool.terminate()
|
self.pool.terminate()
|
||||||
join = TimingWrapper(self.pool.join)
|
join = TimingWrapper(self.pool.join)
|
||||||
join()
|
join()
|
||||||
self.assertTrue(join.elapsed < 0.2)
|
self.assertTrue(join.elapsed < 0.5)
|
||||||
|
|
||||||
def raising():
|
def raising():
|
||||||
raise KeyError("key")
|
raise KeyError("key")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue