Fix typo in test name

Noticed by Xiang Zhang.
This commit is contained in:
Berker Peksag 2016-08-25 01:13:34 +03:00
parent 74319ae219
commit 208536132b
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class BaseHTTPServerTestCase(BaseTestCase):
res = self.con.getresponse()
self.assertEqual(res.status, HTTPStatus.NOT_IMPLEMENTED)
def test_head_keep_alive(self):
def test_header_keep_alive(self):
self.con._http_vsn_str = 'HTTP/1.1'
self.con.putrequest('GET', '/')
self.con.putheader('Connection', 'keep-alive')