From: Ben Darnell Date: Sat, 6 Oct 2012 19:51:25 +0000 (-0700) Subject: Add a little more slack to this timing test. X-Git-Tag: v3.0.0~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=832ac4f6214dabc0a01b84d071f50e8eff570391;p=thirdparty%2Ftornado.git Add a little more slack to this timing test. It seems to fail a lot on VMs. --- diff --git a/tornado/test/testing_test.py b/tornado/test/testing_test.py index 06e86ae77..7fcbda8fd 100644 --- a/tornado/test/testing_test.py +++ b/tornado/test/testing_test.py @@ -23,7 +23,7 @@ class AsyncTestCaseTest(AsyncTestCase): self.io_loop.add_timeout(self.io_loop.time() + 0.01, self.stop) self.wait(timeout=0.02) self.io_loop.add_timeout(self.io_loop.time() + 0.03, self.stop) - self.wait(timeout=0.1) + self.wait(timeout=0.15) class SetUpTearDownTest(unittest.TestCase):