From: Gregory P. Smith Date: Tue, 16 Mar 2004 07:07:06 +0000 (+0000) Subject: bugfix for people executing test_all to run the test suite. (call the X-Git-Tag: v2.4a1~692 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bce64ec086026464c14bdedc00599a837d5ad6ef;p=thirdparty%2FPython%2Fcpython.git bugfix for people executing test_all to run the test suite. (call the correct function) --- diff --git a/Lib/bsddb/test/test_all.py b/Lib/bsddb/test/test_all.py index 3bf70d7db02c..7b1bf3d29428 100644 --- a/Lib/bsddb/test/test_all.py +++ b/Lib/bsddb/test/test_all.py @@ -66,7 +66,7 @@ def suite(): alltests = unittest.TestSuite() for name in test_modules: module = __import__(name) - alltests.addTest(module.suite()) + alltests.addTest(module.test_suite()) return alltests