Revert incorrect patch made at the wrong time.

This commit is contained in:
R. David Murray 2010-12-20 19:04:51 +00:00
parent bf9004483d
commit 92812028f2
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class CommandLineTests(unittest.TestCase):
def assertRunNotOK(self, *args, **env_vars):
rc, out, err = script_helper.assert_python_failure(
'-S', '-m', 'compileall', *args, **env_vars)
'-m', 'compileall', *args, **env_vars)
return rc, out, err
def assertCompiled(self, fn):