From: Ben Darnell Date: Sun, 22 May 2016 00:15:20 +0000 (-0400) Subject: Increase timeout on a flaky test X-Git-Tag: v4.4.0b1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=555f3a069f9a6a6ae03c63ccc05386212c347c4f;p=thirdparty%2Ftornado.git Increase timeout on a flaky test --- 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.