From: Donald Stufft Date: Wed, 6 Jul 2016 21:46:37 +0000 (-0400) Subject: Fix a test with the new upload URL X-Git-Tag: v3.6.0a3~30^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1fc45ae73f6c230ffb936db549ec225e19656af;p=python Fix a test with the new upload URL --- diff --git a/Lib/distutils/tests/test_config.py b/Lib/distutils/tests/test_config.py index 6763f57388..c7bbd6d108 100644 --- a/Lib/distutils/tests/test_config.py +++ b/Lib/distutils/tests/test_config.py @@ -130,7 +130,7 @@ class PyPIRCCommandTestCase(BasePyPIRCCommandTestCase): 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)