Reflow long line.

This commit is contained in:
Jeremy Hylton 2008-12-15 03:08:30 +00:00
parent 236156f500
commit 8206695c4b
1 changed files with 2 additions and 1 deletions

View File

@ -188,7 +188,8 @@ def test_chunked(self):
resp.close()
def test_negative_content_length(self):
sock = FakeSocket('HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
sock = FakeSocket(
'HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
resp = httplib.HTTPResponse(sock, method="GET")
resp.begin()
self.assertEquals(resp.read(), b'Hello\r\n')