[Python-checkins] cpython: fix cert names for asyncio test

christian.heimes python-checkins at python.org
Fri Dec 6 02:58:32 CET 2013


http://hg.python.org/cpython/rev/ec1e7fc9b5a4
changeset:   87787:ec1e7fc9b5a4
user:        Christian Heimes <christian at cheimes.de>
date:        Fri Dec 06 02:58:23 2013 +0100
summary:
  fix cert names for asyncio test

files:
  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
--- a/Lib/asyncio/test_utils.py
+++ b/Lib/asyncio/test_utils.py
@@ -95,8 +95,8 @@
             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,

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list