From: Ben Darnell Date: Mon, 25 Jul 2011 02:23:38 +0000 (-0700) Subject: Fix test that depended on simple_httpclient implementation detail. X-Git-Tag: v2.1.0~70^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2142ee27cda9ae4456ba912a715f04af834023c;p=thirdparty%2Ftornado.git Fix test that depended on simple_httpclient implementation detail. --- diff --git a/tornado/test/httpserver_test.py b/tornado/test/httpserver_test.py index 2d0694718..804acdeb3 100644 --- a/tornado/test/httpserver_test.py +++ b/tornado/test/httpserver_test.py @@ -105,7 +105,7 @@ class HTTPConnectionTest(AsyncHTTPTestCase, LogTrapTestCase): def raw_fetch(self, headers, body): conn = RawRequestHTTPConnection(self.io_loop, self.http_client, httpclient.HTTPRequest(self.get_url("/")), - self.stop) + self.stop, 1024*1024) conn.set_request( b("\r\n").join(headers + [utf8("Content-Length: %d\r\n" % len(body))]) +