From 5cb823d353261b67497dc927845dbbd513d232fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Mon, 22 Nov 2010 02:42:43 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20one=20compileall=20test=20(#10453).=20=20?= =?UTF-8?q?Patch=20by=20Michele=20Orr=C3=B9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/test/test_compileall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index dd0962f20a8..35b98f3eddb 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))