diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-22 02:42:43 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-22 02:42:43 (GMT) |
commit | 5cb823d353261b67497dc927845dbbd513d232fc (patch) | |
tree | b7fe4c01690dddc3606e224ab0d4152344373152 /Lib | |
parent | 870e0e81a6b90d02cf0beae2c59c577e8cb960f1 (diff) | |
download | cpython-5cb823d353261b67497dc927845dbbd513d232fc.zip cpython-5cb823d353261b67497dc927845dbbd513d232fc.tar.gz cpython-5cb823d353261b67497dc927845dbbd513d232fc.tar.bz2 |
Fix one compileall test (#10453). Patch by Michele Orrù.
Diffstat (limited to 'Lib')
-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 dd0962f..35b98f3 100644 --- a/Lib/test/test_compileall.py +++ b/Lib/test/test_compileall.py @@ -222,7 +222,7 @@ class CommandLineTests(unittest.TestCase): def test_quiet(self): noise = subprocess.getoutput('{} -m compileall {}'.format( sys.executable, self.pkgdir)) - quiet = subprocess.getoutput(('{} -m compileall {}'.format( + quiet = subprocess.getoutput(('{} -m compileall -f -q {}'.format( sys.executable, self.pkgdir))) self.assertGreater(len(noise), len(quiet)) |