mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
Fixed bytes warnings when run tests with -vv.
This commit is contained in:
parent
7665be6087
commit
b0749ca933
2 changed files with 6 additions and 6 deletions
|
@ -143,7 +143,7 @@ class MultiProcessingCmdLineMixin():
|
|||
def _check_output(self, script_name, exit_code, out, err):
|
||||
if verbose > 1:
|
||||
print("Output from test script %r:" % script_name)
|
||||
print(out)
|
||||
print(repr(out))
|
||||
self.assertEqual(exit_code, 0)
|
||||
self.assertEqual(err.decode('utf-8'), '')
|
||||
expected_results = "%s -> [1, 4, 9]" % self.start_method
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue