diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-10 20:41:54 +0000 |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-10 20:41:54 +0000 |
commit | 637425074cf68c9cc783aba3cc82f028b13dbdf0 (patch) | |
tree | 4788819ffa0ffcd0df76cc2b6d8d78939216fa87 /Lib/unittest/suite.py | |
parent | e13d33d7e78049d550830ec1c4330054e6036cca (diff) | |
download | cpython-637425074cf68c9cc783aba3cc82f028b13dbdf0.tar.gz |
Merged revisions 81878 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81878 | michael.foord | 2010-06-10 21:40:21 +0100 (Thu, 10 Jun 2010) | 2 lines
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 a543e8191a..b6ae68c31a 100644 --- a/Lib/unittest/suite.py +++ b/Lib/unittest/suite.py @@ -109,7 +109,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: |