Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8206695

Browse files
committed
Reflow long line.
1 parent 236156f commit 8206695

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_httplib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ def test_chunked(self):
188188
resp.close()
189189

190190
def test_negative_content_length(self):
191-
sock = FakeSocket('HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
191+
sock = FakeSocket(
192+
'HTTP/1.1 200 OK\r\nContent-Length: -1\r\n\r\nHello\r\n')
192193
resp = httplib.HTTPResponse(sock, method="GET")
193194
resp.begin()
194195
self.assertEquals(resp.read(), b'Hello\r\n')

0 commit comments

Comments
 (0)