[Python-checkins] cpython (3.5): Fix a test with the new upload URL

donald.stufft python-checkins at python.org
Wed Jul 6 17:46:42 EDT 2016


https://hg.python.org/cpython/rev/438032e7c0a0
changeset:   102270:438032e7c0a0
branch:      3.5
parent:      102267:2c2db02cd288
user:        Donald Stufft <donald at stufft.io>
date:        Wed Jul 06 17:46:37 2016 -0400
summary:
  Fix a test with the new upload URL

files:
  Lib/distutils/tests/test_config.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/distutils/tests/test_config.py b/Lib/distutils/tests/test_config.py
--- a/Lib/distutils/tests/test_config.py
+++ b/Lib/distutils/tests/test_config.py
@@ -130,7 +130,7 @@
 
         config = list(sorted(config.items()))
         waited = [('password', 'yh^%#rest-of-my-password'), ('realm', 'pypi'),
-                  ('repository', 'https://pypi.python.org/pypi'),
+                  ('repository', 'https://upload.pypi.io/legacy/'),
                   ('server', 'server3'), ('username', 'cbiggles')]
         self.assertEqual(config, waited)
 

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


More information about the Python-checkins mailing list