diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-10 20:40:21 +0000 |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-10 20:40:21 +0000 |
commit | 33958b87f289068dfb0b4f41df8548cbf57a9eec (patch) | |
tree | b55acd009e75c4402766e433091b05a076eaed68 /Lib/unittest/suite.py | |
parent | 83d3576ab86240668342fef5e42f4490977a5710 (diff) | |
download | cpython-git-33958b87f289068dfb0b4f41df8548cbf57a9eec.tar.gz |
Fix issue with nested test suites debug method and module setups. (unittest)
Diffstat (limited to 'Lib/unittest/suite.py')
-rw-r--r-- | Lib/unittest/suite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py index 04d35b883b..8602107eb8 100644 --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -112,7 +112,7 @@ class TestSuite(BaseTestSuite): continue if hasattr(test, '_wrapped_run'): - test._wrapped_run(result) + test._wrapped_run(result, debug) elif not debug: test(result) else: |