diff options
author | Christophe Combelles <ccomb@free.fr> | 2010-05-19 23:11:22 +0200 |
---|---|---|
committer | Christophe Combelles <ccomb@free.fr> | 2010-05-19 23:11:22 +0200 |
commit | f3411291c4ec89df2f9fe18263a5509fb4caaddf (patch) | |
tree | d2ca36905b32d6ab726c01a68db040dcab6d13e5 /setuptools/tests/test_packageindex.py | |
parent | 29ffeae7d36c6e6c2a10dd230f8472226f51d955 (diff) | |
download | external_python_setuptools-f3411291c4ec89df2f9fe18263a5509fb4caaddf.tar.gz external_python_setuptools-f3411291c4ec89df2f9fe18263a5509fb4caaddf.tar.bz2 external_python_setuptools-f3411291c4ec89df2f9fe18263a5509fb4caaddf.zip |
fixed issue 163 : don't include md5 when comparing two distributions, and scan
index links before external page links.
--HG--
branch : distribute
extra : rebase_source : d190057280e7cb27317eb4aa40e75f1c851ed6e5
Diffstat (limited to 'setuptools/tests/test_packageindex.py')
-rw-r--r-- | setuptools/tests/test_packageindex.py | 8 |
1 files changed, 3 insertions, 5 deletions
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) |