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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bce64ec086026464c14bdedc00599a837d5ad6ef;p=python 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 3bf70d7db0..7b1bf3d294 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