From: Ben Darnell Date: Sat, 3 Oct 2015 18:20:55 +0000 (-0400) Subject: Tweak a timing-sensitive test. X-Git-Tag: v4.3.0b1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d508a496f5a47b295e43bd522e3812f7db5cbde;p=thirdparty%2Ftornado.git Tweak a timing-sensitive test. This one seems especially flaky on appveyor. --- diff --git a/tornado/test/testing_test.py b/tornado/test/testing_test.py index bcea4d252..ded2569b8 100644 --- a/tornado/test/testing_test.py +++ b/tornado/test/testing_test.py @@ -58,7 +58,7 @@ class AsyncTestCaseTest(AsyncTestCase): This test makes sure that a second call to wait() clears the first timeout. """ - self.io_loop.add_timeout(self.io_loop.time() + 0.01, self.stop) + self.io_loop.add_timeout(self.io_loop.time() + 0.00, self.stop) self.wait(timeout=0.02) self.io_loop.add_timeout(self.io_loop.time() + 0.03, self.stop) self.wait(timeout=0.15)