From bce64ec086026464c14bdedc00599a837d5ad6ef Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Tue, 16 Mar 2004 07:07:06 +0000 Subject: bugfix for people executing test_all to run the test suite. (call the correct function) --- Lib/bsddb/test/test_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/bsddb/test/test_all.py b/Lib/bsddb/test/test_all.py index 3bf70d7..7b1bf3d 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 -- cgit v0.12