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 3bf70d7..7b1bf3d 100644
--- a/Lib/bsddb/test/test_all.py
+++ b/Lib/bsddb/test/test_all.py
@@ -66,7 +66,7 @@
     alltests = unittest.TestSuite()
     for name in test_modules:
         module = __import__(name)
-        alltests.addTest(module.suite())
+        alltests.addTest(module.test_suite())
     return alltests