diff options
Diffstat (limited to 'Lib/test/test_compileall.py')
-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( |