mirror of https://github.com/python/cpython
Fix one compileall test (#10453). Patch by Michele Orrù.
This commit is contained in:
parent
870e0e81a6
commit
5cb823d353
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in New Issue