From: Berker Peksag Date: Wed, 24 Aug 2016 22:13:34 +0000 (+0300) Subject: Fix typo in test name X-Git-Tag: v3.6.0b1~557 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=208536132b6c952f4634c5193ef76f4a83218f7e;p=python Fix typo in test name Noticed by Xiang Zhang. --- diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index 7f4b0f90d0..75044cbafa 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -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')