diff options
| author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2012-11-26 03:59:17 +0100 |
|---|---|---|
| committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2012-11-26 03:59:17 +0100 |
| commit | be1267e1e3cb71dc959bc239f2d9adb426f97514 (patch) | |
| tree | fdf0f72f422ea85a58154c818e807b3bac59a9bf /setuptools/tests/test_easy_install.py | |
| parent | b690182af1431a908db52145be398b362ea0d6e1 (diff) | |
| download | python-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.py | 2 |
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: |
