Commit 0f29131d authored by Jason R. Coombs's avatar Jason R. Coombs

Allow for three requests (fixes test on Python 3.3).

--HG--
branch : distribute
extra : rebase_source : 42f8c571b3296488b167aaa863bdbfa771f6a9d9
parent 9f2aec42
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment