diff options
author | Christian Heimes <christian@cheimes.de> | 2013-12-06 01:58:23 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-12-06 01:58:23 (GMT) |
commit | c9a87e6bbebd87691de435b1c4b2a456d073222d (patch) | |
tree | 72a3c7e0d14db967aeffdb490a64d84c77027dde /Lib/asyncio | |
parent | 6d8c1abb003a4cb05f1ddcf0eeddeeeed513cd57 (diff) | |
download | cpython-c9a87e6bbebd87691de435b1c4b2a456d073222d.zip cpython-c9a87e6bbebd87691de435b1c4b2a456d073222d.tar.gz cpython-c9a87e6bbebd87691de435b1c4b2a456d073222d.tar.bz2 |
fix cert names for asyncio test
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/test_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/test_utils.py b/Lib/asyncio/test_utils.py index d7d8442..c26dd88 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, |