mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
issue 10237
Increase the default timout of the barries used in the barrier tests. This should solve unexpected timeouts on some machines.
This commit is contained in:
parent
028011f9f0
commit
6b6dffdc73
1 changed files with 1 additions and 1 deletions
|
@ -606,7 +606,7 @@ class BarrierTests(BaseTestCase):
|
|||
N = 5
|
||||
|
||||
def setUp(self):
|
||||
self.barrier = self.barriertype(self.N, timeout=0.1)
|
||||
self.barrier = self.barriertype(self.N, timeout=0.5)
|
||||
def tearDown(self):
|
||||
self.barrier.abort()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue