diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-15 13:41:52 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-04-15 13:41:52 -0400 |
commit | 0f29131df992aff401a8157931e419570826acaa (patch) | |
tree | 6374859ffbaf146ccb2a0d7465a4e0a1719c62ef /setuptools/tests/test_easy_install.py | |
parent | 9f2aec42c42499d265215db77cc0e242711e034b (diff) | |
download | external_python_setuptools-0f29131df992aff401a8157931e419570826acaa.tar.gz external_python_setuptools-0f29131df992aff401a8157931e419570826acaa.tar.bz2 external_python_setuptools-0f29131df992aff401a8157931e419570826acaa.zip |
Allow for three requests (fixes test on Python 3.3).
--HG--
branch : distribute
extra : rebase_source : 42f8c571b3296488b167aaa863bdbfa771f6a9d9
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 6fd45e8b..7c807fc3 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -307,7 +307,9 @@ class TestSetupRequires(unittest.TestCase): # create an sdist that has a build-time dependency. self.create_sdist(install) - self.assertEqual(len(p_index.requests), 2) + # there should have been two or three requests to the server + # (three happens on Python 3.3a) + self.assert_(2 <= len(p_index.requests) <= 3) self.assertEqual(p_index.requests[0].path, '/does-not-exist/') def create_sdist(self, installer): |