summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_easy_install.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2012-11-26 03:59:17 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2012-11-26 03:59:17 +0100
commitbe1267e1e3cb71dc959bc239f2d9adb426f97514 (patch)
treefdf0f72f422ea85a58154c818e807b3bac59a9bf /setuptools/tests/test_easy_install.py
parentb690182af1431a908db52145be398b362ea0d6e1 (diff)
downloadpython-setuptools-bitbucket-be1267e1e3cb71dc959bc239f2d9adb426f97514.tar.gz
Do not use assertGreater(), which was introduced in Python 2.7 and 3.1.
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r--setuptools/tests/test_easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index 1540bdc6..7ed0cd37 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -386,7 +386,7 @@ class TestSetupRequires(unittest.TestCase):
'VersionConflict')
lines = stdout.splitlines()
- self.assertGreater(len(lines), 0)
+ self.assertTrue(len(lines) > 0)
self.assert_(lines[-1].strip(), 'test_pkg')
try: