mirror of https://github.com/python/cpython
Issue #10860: Skip the new test if HTTPS is not available
This commit is contained in:
parent
fbb39815d4
commit
e119c403a1
|
@ -541,6 +541,8 @@ class HTTPSTest(TestCase):
|
||||||
resp = h.getresponse()
|
resp = h.getresponse()
|
||||||
self.assertEqual(resp.status, 404)
|
self.assertEqual(resp.status, 404)
|
||||||
|
|
||||||
|
@unittest.skipIf(not hasattr(client, 'HTTPSConnection'),
|
||||||
|
'http.client.HTTPSConnection not available')
|
||||||
def test_host_port(self):
|
def test_host_port(self):
|
||||||
# Check invalid host_port
|
# Check invalid host_port
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue