From 94215049fd37f810ddf4e6b8122cce02aea3e6e3 Mon Sep 17 00:00:00 2001 From: Samuel Merritt Date: Mon, 4 May 2015 15:08:51 -0700 Subject: [PATCH] Bump up a timeout in a test Got a slow crappy VM like I do? You might see this fail occasionally. Bump up the timeout a little to help it out. Change-Id: I8c0e5b99012830ea3525fa55b0811268db3da2a2 --- test/unit/common/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/common/test_utils.py b/test/unit/common/test_utils.py index 22aa3db5e1..48610c1a7b 100644 --- a/test/unit/common/test_utils.py +++ b/test/unit/common/test_utils.py @@ -4482,7 +4482,7 @@ class TestGreenAsyncPile(unittest.TestCase): pile = utils.GreenAsyncPile(3) pile.spawn(run_test, 0.1) pile.spawn(run_test, 1.0) - self.assertEqual(pile.waitall(0.2), [0.1]) + self.assertEqual(pile.waitall(0.5), [0.1]) self.assertEqual(completed[0], 1) def test_waitall_timeout_completes(self):