From 2d508a496f5a47b295e43bd522e3812f7db5cbde Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 3 Oct 2015 14:20:55 -0400 Subject: [PATCH] Tweak a timing-sensitive test. This one seems especially flaky on appveyor. --- tornado/test/testing_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.3