diff options
-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)) |