diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 01:45:42 +0100 |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-12-22 01:45:42 +0100 |
| commit | 13766f65fc959da18e5d775ceb7a25ed71ed401e (patch) | |
| tree | 071352beb8e8a26a59cbea6d221885bed7e3eb22 /tests/test_config.py | |
| parent | 17a7b8192a8fcba2649854c844ae22fa0f512085 (diff) | |
| parent | 9f4a8134cd20941bd90e6419948c7bdc83475ad0 (diff) | |
| download | python-setuptools-git-13766f65fc959da18e5d775ceb7a25ed71ed401e.tar.gz | |
Issue #12226: HTTPS is now used by default when connecting to PyPI.
Diffstat (limited to 'tests/test_config.py')
| -rw-r--r-- | tests/test_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 0e8d65e2..4de825a8 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -87,7 +87,7 @@ class PyPIRCCommandTestCase(support.TempdirManager, config = list(sorted(config.items())) waited = [('password', 'secret'), ('realm', 'pypi'), - ('repository', 'http://pypi.python.org/pypi'), + ('repository', 'https://pypi.python.org/pypi'), ('server', 'server1'), ('username', 'me')] self.assertEqual(config, waited) @@ -96,7 +96,7 @@ class PyPIRCCommandTestCase(support.TempdirManager, config = cmd._read_pypirc() config = list(sorted(config.items())) waited = [('password', 'secret'), ('realm', 'pypi'), - ('repository', 'http://pypi.python.org/pypi'), + ('repository', 'https://pypi.python.org/pypi'), ('server', 'server-login'), ('username', 'tarek')] self.assertEqual(config, waited) |
