diff options
author | Donald Stufft <donald@stufft.io> | 2016-07-06 21:46:37 (GMT) |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-07-06 21:46:37 (GMT) |
commit | a1fc45ae73f6c230ffb936db549ec225e19656af (patch) | |
tree | 60df8c7f75647ab1035a886c79b6c7432d15d358 | |
parent | 1af8b63447033e156eaf7bf9620a242089fa9f5b (diff) | |
download | cpython-a1fc45ae73f6c230ffb936db549ec225e19656af.zip cpython-a1fc45ae73f6c230ffb936db549ec225e19656af.tar.gz cpython-a1fc45ae73f6c230ffb936db549ec225e19656af.tar.bz2 |
Fix a test with the new upload URL
-rw-r--r-- | 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 index 6763f57..c7bbd6d 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) |