aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/indexes/test_links_priority/external.html2
-rw-r--r--setuptools/tests/indexes/test_links_priority/simple/foobar/index.html2
-rw-r--r--setuptools/tests/test_packageindex.py8
3 files changed, 5 insertions, 7 deletions
diff --git a/setuptools/tests/indexes/test_links_priority/external.html b/setuptools/tests/indexes/test_links_priority/external.html
index 883e9790..92e4702f 100644
--- a/setuptools/tests/indexes/test_links_priority/external.html
+++ b/setuptools/tests/indexes/test_links_priority/external.html
@@ -1,3 +1,3 @@
<html><body>
-<a href="foobar-0.1.tar.gz#md5=bad_md5">bad old link</a>
+<a href="/foobar-0.1.tar.gz#md5=1__bad_md5___">bad old link</a>
</body></html>
diff --git a/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html b/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html
index dc6273d1..fefb028b 100644
--- a/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html
+++ b/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html
@@ -1,4 +1,4 @@
<html><body>
-<a href="foobar-0.1.tar.gz#md5=correct_md5">foobar-0.1.tar.gz</a><br/>
+<a href="/foobar-0.1.tar.gz#md5=0_correct_md5">foobar-0.1.tar.gz</a><br/>
<a href="../../external.html" rel="homepage">external homepage</a><br/>
</body></html>
diff --git a/setuptools/tests/test_packageindex.py b/setuptools/tests/test_packageindex.py
index 5c1c6970..42cb8c1e 100644
--- a/setuptools/tests/test_packageindex.py
+++ b/setuptools/tests/test_packageindex.py
@@ -103,12 +103,10 @@ class TestPackageIndex(unittest.TestCase):
# the distribution has been found
self.assert_('foobar' in pi)
- # we have two links
- self.assert_(len(pi['foobar'])==2)
- # the first link should be from the index
+ # we have only one link, because links are compared without md5
+ self.assert_(len(pi['foobar'])==1)
+ # the link should be from the index
self.assert_('correct_md5' in pi['foobar'][0].location)
- # the second link should be the external one
- self.assert_('bad_md5' in pi['foobar'][1].location)