summaryrefslogtreecommitdiff
path: root/tests/test_install_lib.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-05-10 12:38:16 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-05-10 12:38:16 +0000
commit61608597d3a2eb12e119267100a479ba2657bd51 (patch)
tree6f31da535422fc3812d385fe7448c1c122f0cde7 /tests/test_install_lib.py
parent08fd7deaae5c8a866f5f5efe67efd104e632ec96 (diff)
downloadpython-setuptools-git-61608597d3a2eb12e119267100a479ba2657bd51.tar.gz
Merged revisions 72547 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72547 | tarek.ziade | 2009-05-10 14:36:48 +0200 (Sun, 10 May 2009) | 1 line fixed test for all platforms ........
Diffstat (limited to 'tests/test_install_lib.py')
-rw-r--r--tests/test_install_lib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_install_lib.py b/tests/test_install_lib.py
index 69a24faf..d7681668 100644
--- a/tests/test_install_lib.py
+++ b/tests/test_install_lib.py
@@ -57,7 +57,7 @@ class InstallLibTestCase(support.TempdirManager,
cmd.distribution.script_name = 'setup.py'
# get_output should return 4 elements
- self.assertEquals(len(cmd.get_outputs()), 4)
+ self.assert_(len(cmd.get_outputs()) >= 2)
def test_get_inputs(self):
pkg_dir, dist = self.create_dist()