summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
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)
commit5cb823d353261b67497dc927845dbbd513d232fc (patch)
treeb7fe4c01690dddc3606e224ab0d4152344373152 /Lib
parent870e0e81a6b90d02cf0beae2c59c577e8cb960f1 (diff)
downloadcpython-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.py2
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))