diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-21 02:19:09 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-21 02:19:09 (GMT) |
commit | a491cedaf45252cb8431b0fd45bc0383cd00115b (patch) | |
tree | 2f447da9034d66528a847549d65aaf51fcfe1536 | |
parent | fe502ea0e8b1d842e991f0b2bfe7364e15014a3f (diff) | |
download | cpython-a491cedaf45252cb8431b0fd45bc0383cd00115b.zip cpython-a491cedaf45252cb8431b0fd45bc0383cd00115b.tar.gz cpython-a491cedaf45252cb8431b0fd45bc0383cd00115b.tar.bz2 |
Try to get more useful output from failing buildbot
-rw-r--r-- | Lib/test/test_compileall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index 4fd7ddf..dd0962f 100644 --- a/Lib/test/test_compileall.py +++ b/Lib/test/test_compileall.py @@ -224,7 +224,7 @@ class CommandLineTests(unittest.TestCase): sys.executable, self.pkgdir)) quiet = subprocess.getoutput(('{} -m compileall {}'.format( sys.executable, self.pkgdir))) - self.assertTrue(len(noise) > len(quiet)) + self.assertGreater(len(noise), len(quiet)) def test_regexp(self): retcode = subprocess.call( |