diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-10 20:38:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 20:38:18 (GMT) |
commit | c2d542b42cd109d81c0308f9c4437c38ac74d2e0 (patch) | |
tree | 131fd8fe542771400ef3d2d1d632712cce445605 /Lib/test/test_httplib.py | |
parent | 5b168fdd6fd0846fe1dac8b23866aec834db8283 (diff) | |
download | cpython-c2d542b42cd109d81c0308f9c4437c38ac74d2e0.zip cpython-c2d542b42cd109d81c0308f9c4437c38ac74d2e0.tar.gz cpython-c2d542b42cd109d81c0308f9c4437c38ac74d2e0.tar.bz2 |
[3.12] gh-108303: Move all certificates to `Lib/test/certdata/` (GH-109489) (#109682)
* gh-108303: Move all certificates to `Lib/test/certdata/` (GH-109489)
(cherry picked from commit e57ecf6bbc59f999d27b125ea51b042c24a07bd9)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Python 3.12 backport: update also `test_nntplib`.
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: T. Wouters <thomas@python.org>
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r-- | Lib/test/test_httplib.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 676725c..5d5832b 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -21,11 +21,13 @@ support.requires_working_socket(module=True) here = os.path.dirname(__file__) # Self-signed cert file for 'localhost' -CERT_localhost = os.path.join(here, 'keycert.pem') +CERT_localhost = os.path.join(here, 'certdata', 'keycert.pem') # Self-signed cert file for 'fakehostname' -CERT_fakehostname = os.path.join(here, 'keycert2.pem') +CERT_fakehostname = os.path.join(here, 'certdata', 'keycert2.pem') # Self-signed cert file for self-signed.pythontest.net -CERT_selfsigned_pythontestdotnet = os.path.join(here, 'selfsigned_pythontestdotnet.pem') +CERT_selfsigned_pythontestdotnet = os.path.join( + here, 'certdata', 'selfsigned_pythontestdotnet.pem', +) # constants for testing chunked encoding chunked_start = ( |