mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)
Argument script_exec_args is usually an absolute file name, but twice has form ['-m', 'module_name'].
This commit is contained in:
parent
31c9828ec0
commit
7e711ead26
2 changed files with 2 additions and 1 deletions
|
@ -145,7 +145,7 @@ class CmdLineTest(unittest.TestCase):
|
|||
*run_args, __isolated=False, __cwd=cwd, **env_vars
|
||||
)
|
||||
if verbose > 1:
|
||||
print('Output from test script %r:' % script_exec_args)
|
||||
print(f'Output from test script {script_exec_args!r:}')
|
||||
print(repr(err))
|
||||
print('Expected output: %r' % expected_msg)
|
||||
self.assertIn(expected_msg.encode('utf-8'), err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue