Fix printing out error message when test fails and run with -bb
This commit is contained in:
parent
6b4b8d0722
commit
dab4e8a02d
|
@ -454,7 +454,7 @@ class SiginterruptTest(unittest.TestCase):
|
|||
stdout = first_line + stdout
|
||||
exitcode = process.wait()
|
||||
if exitcode not in (2, 3):
|
||||
raise Exception("Child error (exit code %s): %s"
|
||||
raise Exception("Child error (exit code %s): %r"
|
||||
% (exitcode, stdout))
|
||||
return (exitcode == 3)
|
||||
|
||||
|
|
Loading…
Reference in New Issue