bpo-33715: Fix multiprocessing test_wait_result() (GH-7971) · python/cpython@404250e

Original file line numberDiff line numberDiff line change

@@ -1217,9 +1217,9 @@ def test_wait_result(self):

12171217

p = self.Process(target=self._test_wait_result, args=(c, pid))

12181218

p.start()

12191219
1220-

self.assertTrue(c.wait(10))

1220+

self.assertTrue(c.wait(60))

12211221

if pid is not None:

1222-

self.assertRaises(KeyboardInterrupt, c.wait, 10)

1222+

self.assertRaises(KeyboardInterrupt, c.wait, 60)

12231223
12241224

p.join()

12251225