]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Increase timeout on a flaky test
authorBen Darnell <ben@bendarnell.com>
Sun, 22 May 2016 00:15:20 +0000 (20:15 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 22 May 2016 00:15:20 +0000 (20:15 -0400)
tornado/test/ioloop_test.py

index faea4365c2cfb2f5a36e0ca5cf8fdb0297f8fb79..8eda7acb4f4709124207bb327e41ee4a257f6231 100644 (file)
@@ -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.