Skip to content

Commit 76d8d5b

Browse files
Minor fixes
1 parent c50bb33 commit 76d8d5b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_httplib.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,9 +348,9 @@ def test_invalid_headers(self):
348348

349349
def test_headers_debuglevel(self):
350350
body = (
351-
b'HTTP/1.1 200 OK\r\n'
352-
b'First: val\r\n'
353-
b'Second: val\r\n'
351+
b'200 OK'
352+
b'First: val'
353+
b'Second: val'
354354
)
355355
sock = FakeSocket(body)
356356
resp = client.HTTPResponse(sock, debuglevel=1)

0 commit comments

Comments
 (0)