From 555f3a069f9a6a6ae03c63ccc05386212c347c4f Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 21 May 2016 20:15:20 -0400 Subject: [PATCH] Increase timeout on a flaky test --- tornado/test/ioloop_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/test/ioloop_test.py b/tornado/test/ioloop_test.py index faea4365c..8eda7acb4 100644 --- a/tornado/test/ioloop_test.py +++ b/tornado/test/ioloop_test.py @@ -408,7 +408,7 @@ class TestIOLoop(AsyncTestCase): self.io_loop.remove_handler(client) self.io_loop.add_handler(client, handle_read, self.io_loop.READ) self.io_loop.add_handler(server, handle_read, self.io_loop.READ) - self.io_loop.call_later(0.03, self.stop) + self.io_loop.call_later(0.1, self.stop) self.wait() # Only one fd was read; the other was cleanly removed. -- 2.47.2