From 8b6bbba1b4ba0f59be6eccb4cc38c524239b6cfc Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Thu, 12 Feb 2015 18:15:38 -0500 Subject: [PATCH] Increase the timeout on a test that's failing on travis-ci. It is inexplicably failing on py27 DEPS=false while passing in other configurations. --- 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 0bad57588..5ea304463 100644 --- a/tornado/test/ioloop_test.py +++ b/tornado/test/ioloop_test.py @@ -358,7 +358,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.01, self.stop) + self.io_loop.call_later(0.03, self.stop) self.wait() # Only one fd was read; the other was cleanly removed. -- 2.47.2