From: Ben Darnell Date: Thu, 12 Feb 2015 23:15:38 +0000 (-0500) Subject: Increase the timeout on a test that's failing on travis-ci. X-Git-Tag: v4.2.0b1~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b6bbba1b4ba0f59be6eccb4cc38c524239b6cfc;p=thirdparty%2Ftornado.git 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. --- 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.