]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Increase the timeout on a test that's failing on travis-ci.
authorBen Darnell <ben@bendarnell.com>
Thu, 12 Feb 2015 23:15:38 +0000 (18:15 -0500)
committerBen Darnell <ben@bendarnell.com>
Thu, 12 Feb 2015 23:15:38 +0000 (18:15 -0500)
It is inexplicably failing on py27 DEPS=false while passing in other
configurations.

tornado/test/ioloop_test.py

index 0bad57588aa3f9ec9b84d0cc75f27efffe277cba..5ea304463e2b187e3adbd8d96ffade8b62f63b3d 100644 (file)
@@ -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.