commit | 33958b87f289068dfb0b4f41df8548cbf57a9eec | [log] [tgz] |
---|---|---|
author | Michael Foord <fuzzyman@voidspace.org.uk> | Thu Jun 10 20:40:21 2010 +0000 |
committer | Michael Foord <fuzzyman@voidspace.org.uk> | Thu Jun 10 20:40:21 2010 +0000 |
tree | b55acd009e75c4402766e433091b05a076eaed68 | |
parent | 83d3576ab86240668342fef5e42f4490977a5710 [diff] [blame] |
Fix issue with nested test suites debug method and module setups. (unittest)
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py index 04d35b8..8602107 100644 --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py
@@ -112,7 +112,7 @@ continue if hasattr(test, '_wrapped_run'): - test._wrapped_run(result) + test._wrapped_run(result, debug) elif not debug: test(result) else: