diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-14 04:51:03 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-14 04:51:03 -0500 |
commit | 477fef2d71db14b82d74ea73f4f90e02876d1967 (patch) | |
tree | eab8d0376dc7241bd234446130b578ba4e6a88fe /setuptools/tests/test_packageindex.py | |
parent | 2f0e172bdab76b0c972b5d1480bcccc88f63c7ec (diff) | |
download | external_python_setuptools-477fef2d71db14b82d74ea73f4f90e02876d1967.tar.gz external_python_setuptools-477fef2d71db14b82d74ea73f4f90e02876d1967.tar.bz2 external_python_setuptools-477fef2d71db14b82d74ea73f4f90e02876d1967.zip |
Add test capturing InterpolationSyntaxError on Python 3. Ref #442
Diffstat (limited to 'setuptools/tests/test_packageindex.py')
-rw-r--r-- | setuptools/tests/test_packageindex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_packageindex.py b/setuptools/tests/test_packageindex.py index 897590e8..746860d5 100644 --- a/setuptools/tests/test_packageindex.py +++ b/setuptools/tests/test_packageindex.py @@ -219,6 +219,6 @@ class TestPyPIConfig: password=pity% """)) cfg = setuptools.package_index.PyPIConfig() - cred = cfg.creds_by_repository['pypi'] + cred = cfg.creds_by_repository['https://pypi.python.org'] assert cred.username == 'jaraco' assert cred.password == 'pity%' |