diff options
author | Donald Stufft <donald@stufft.io> | 2016-08-03 22:49:19 (GMT) |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-08-03 22:49:19 (GMT) |
commit | ef330d35c8223157cf2d395915efbdce41a3173f (patch) | |
tree | a095c40ebfc57b9b57e9fae42cda6336a74a4a45 /Lib/distutils/tests/test_config.py | |
parent | bed6891c7761888a2ea7b46c7b703c942e14091b (diff) | |
parent | c6c2217f2770c3791310a930a05eb4e60bb33282 (diff) | |
download | cpython-ef330d35c8223157cf2d395915efbdce41a3173f.zip cpython-ef330d35c8223157cf2d395915efbdce41a3173f.tar.gz cpython-ef330d35c8223157cf2d395915efbdce41a3173f.tar.bz2 |
Merge 3.4
Diffstat (limited to 'Lib/distutils/tests/test_config.py')
-rw-r--r-- | Lib/distutils/tests/test_config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/tests/test_config.py b/Lib/distutils/tests/test_config.py index c7bbd6d..a384497 100644 --- a/Lib/distutils/tests/test_config.py +++ b/Lib/distutils/tests/test_config.py @@ -95,7 +95,7 @@ class PyPIRCCommandTestCase(BasePyPIRCCommandTestCase): config = list(sorted(config.items())) waited = [('password', 'secret'), ('realm', 'pypi'), - ('repository', 'https://upload.pypi.io/legacy/'), + ('repository', 'https://upload.pypi.org/legacy/'), ('server', 'server1'), ('username', 'me')] self.assertEqual(config, waited) @@ -104,7 +104,7 @@ class PyPIRCCommandTestCase(BasePyPIRCCommandTestCase): config = cmd._read_pypirc() config = list(sorted(config.items())) waited = [('password', 'secret'), ('realm', 'pypi'), - ('repository', 'https://upload.pypi.io/legacy/'), + ('repository', 'https://upload.pypi.org/legacy/'), ('server', 'server-login'), ('username', 'tarek')] self.assertEqual(config, waited) @@ -130,7 +130,7 @@ class PyPIRCCommandTestCase(BasePyPIRCCommandTestCase): config = list(sorted(config.items())) waited = [('password', 'yh^%#rest-of-my-password'), ('realm', 'pypi'), - ('repository', 'https://upload.pypi.io/legacy/'), + ('repository', 'https://upload.pypi.org/legacy/'), ('server', 'server3'), ('username', 'cbiggles')] self.assertEqual(config, waited) |