From: Ben Darnell Date: Sat, 25 May 2013 22:38:11 +0000 (-0400) Subject: Remove a seemingly unneded timeout that made this test timing-sensitive. X-Git-Tag: v3.1.0~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=467a297325acbcbcddb3baa7ac718be1f18e97f3;p=thirdparty%2Ftornado.git Remove a seemingly unneded timeout that made this test timing-sensitive. --- diff --git a/tornado/test/iostream_test.py b/tornado/test/iostream_test.py index 9972c843d..d01d2db94 100644 --- a/tornado/test/iostream_test.py +++ b/tornado/test/iostream_test.py @@ -156,7 +156,7 @@ class TestIOStreamMixin(object): self.fail() server.read_until_close(callback=closed_callback, streaming_callback=self.stop) - self.io_loop.add_timeout(self.io_loop.time() + 0.01, self.stop) + #self.io_loop.add_timeout(self.io_loop.time() + 0.01, self.stop) data = self.wait() self.assertEqual(data, b"efgh") server.close()