mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix one compileall test (#10453). Patch by Michele Orrù.
This commit is contained in:
parent
870e0e81a6
commit
5cb823d353
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue