diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-02-06 00:22:26 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-02-06 00:22:26 (GMT) |
commit | 0877060f8690c50865c3840585c6ce285a99c07c (patch) | |
tree | 9f2b263aa0938075b2ac99d23fcf1e188c7df25c /Lib/unittest/loader.py | |
parent | 2373926964b799a7d8346169feb8fbbf7f2f8a65 (diff) | |
download | cpython-0877060f8690c50865c3840585c6ce285a99c07c.zip cpython-0877060f8690c50865c3840585c6ce285a99c07c.tar.gz cpython-0877060f8690c50865c3840585c6ce285a99c07c.tar.bz2 |
unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799.
Diffstat (limited to 'Lib/unittest/loader.py')
-rw-r--r-- | Lib/unittest/loader.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py index 31c343b..c04de06 100644 --- a/Lib/unittest/loader.py +++ b/Lib/unittest/loader.py @@ -71,9 +71,10 @@ class TestLoader(object): tests.append(self.loadTestsFromTestCase(obj)) load_tests = getattr(module, 'load_tests', None) + tests = self.suiteClass(tests) if use_load_tests and load_tests is not None: return load_tests(self, tests, None) - return self.suiteClass(tests) + return tests def loadTestsFromName(self, name, module=None): """Return a suite of all tests cases given a string specifier. |