Skip to content

Commit 68d5f5a

Browse files
Minor flake8 fixes
1 parent c247e94 commit 68d5f5a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Lib/test/test_httplib.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1879,11 +1879,13 @@ def test_getting_header_defaultint(self):
18791879
header = self.resp.getheader('No-Such-Header',default=42)
18801880
self.assertEqual(header, 42)
18811881

1882+
18821883
class TunnelTests(TestCase):
1884+
18831885
def setUp(self):
18841886
response_text = (
1885-
'HTTP/1.0 200 OK\r\n\r\n' # Reply to CONNECT
1886-
'HTTP/1.1 200 OK\r\n' # Reply to HEAD
1887+
'HTTP/1.0 200 OK\r\n\r\n' # Reply to CONNECT
1888+
'HTTP/1.1 200 OK\r\n' # Reply to HEAD
18871889
'Content-Length: 42\r\n\r\n'
18881890
)
18891891
self.host = 'proxy.com'

0 commit comments

Comments
 (0)