From 901b46cea5f45f1319fa0f13e84b4fac4db3757c Mon Sep 17 00:00:00 2001 From: Marcus Smith Date: Mon, 5 Aug 2013 21:35:07 -0700 Subject: [PATCH] switch test to working mirror --- tests/functional/test_install_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/test_install_index.py b/tests/functional/test_install_index.py index 6d57e954e8a..612aa4bd9d5 100644 --- a/tests/functional/test_install_index.py +++ b/tests/functional/test_install_index.py @@ -58,7 +58,7 @@ def test_install_from_mirrors_with_specific_mirrors(): Test installing a package from a specific PyPI mirror. """ e = reset_env() - result = run_pip('install', '-vvv', '--use-mirrors', '--mirrors', "http://a.pypi.python.org/", '--no-index', 'INITools==0.2') + result = run_pip('install', '-vvv', '--use-mirrors', '--mirrors', "http://b.pypi.python.org/", '--no-index', 'INITools==0.2') egg_info_folder = e.site_packages / 'INITools-0.2-py%s.egg-info' % pyversion initools_folder = e.site_packages / 'initools' assert egg_info_folder in result.files_created, str(result)