From: Christian Heimes Date: Fri, 6 Dec 2013 01:58:23 +0000 (+0100) Subject: fix cert names for asyncio test X-Git-Tag: v3.4.0b2~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9a87e6bbebd87691de435b1c4b2a456d073222d;p=thirdparty%2FPython%2Fcpython.git fix cert names for asyncio test --- diff --git a/Lib/asyncio/test_utils.py b/Lib/asyncio/test_utils.py index d7d844249c4f..c26dd8818f09 100644 --- a/Lib/asyncio/test_utils.py +++ b/Lib/asyncio/test_utils.py @@ -95,8 +95,8 @@ def run_test_server(*, host='127.0.0.1', port=0, use_ssl=False): if not os.path.isdir(here): here = os.path.join(os.path.dirname(os.__file__), 'test', 'test_asyncio') - keyfile = os.path.join(here, 'sample.key') - certfile = os.path.join(here, 'sample.crt') + keyfile = os.path.join(here, 'ssl_key.pem') + certfile = os.path.join(here, 'ssl_cert.pem') ssock = ssl.wrap_socket(request, keyfile=keyfile, certfile=certfile,