diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/libregrtest/runtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/runtest.py b/Lib/test/libregrtest/runtest.py index 7d5290e..6282543 100644 --- a/Lib/test/libregrtest/runtest.py +++ b/Lib/test/libregrtest/runtest.py @@ -117,7 +117,7 @@ def runtest(ns, test): sys.stdout = stream sys.stderr = stream result = runtest_inner(ns, test, display_failure=False) - if result[0] == FAILED: + if result[0] != PASSED: output = stream.getvalue() orig_stderr.write(output) orig_stderr.flush() |