From f2142ee27cda9ae4456ba912a715f04af834023c Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 24 Jul 2011 19:23:38 -0700 Subject: [PATCH] Fix test that depended on simple_httpclient implementation detail. --- tornado/test/httpserver_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))]) + -- 2.47.2