Fix ResourceWarning for an unclosed socket.

test_return_header_keep_alive - Added a cleanup call for the socket.
This commit is contained in:
Brian Curtin 2010-10-31 00:34:23 +00:00
parent 076623bf0a
commit 61d0d60e13
1 changed files with 1 additions and 0 deletions

View File

@ -182,6 +182,7 @@ class BaseHTTPServerTestCase(BaseTestCase):
res = self.con.getresponse() res = self.con.getresponse()
self.assertEqual(res.getheader('Connection'), 'keep-alive') self.assertEqual(res.getheader('Connection'), 'keep-alive')
self.con.request('TEST', '/') self.con.request('TEST', '/')
self.addCleanup(self.con.close)
def test_internal_key_error(self): def test_internal_key_error(self):
self.con.request('KEYERROR', '/') self.con.request('KEYERROR', '/')