Issue #12109 fixing typo in packaging's test_command_upload_docs
diff --git a/Lib/packaging/tests/test_command_upload_docs.py b/Lib/packaging/tests/test_command_upload_docs.py
index b103894..c9147df 100644
--- a/Lib/packaging/tests/test_command_upload_docs.py
+++ b/Lib/packaging/tests/test_command_upload_docs.py
@@ -141,7 +141,7 @@
def test_https_connection(self):
https_called = False
- orig_https = upload_docs_mod.http.client.HTTPConnection
+ orig_https = upload_docs_mod.http.client.HTTPSConnection
def https_conn_wrapper(*args):
nonlocal https_called
@@ -159,7 +159,7 @@
self.cmd.run()
self.assertTrue(https_called)
finally:
- upload_docs_mod.http.client.HTTPConnection = orig_https
+ upload_docs_mod.http.client.HTTPSConnection = orig_https
def test_handling_response(self):
self.pypi.default_response_status = '403 Forbidden'