commit | bce64ec086026464c14bdedc00599a837d5ad6ef | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@mad-scientist.com> | Tue Mar 16 07:07:06 2004 +0000 |
committer | Gregory P. Smith <greg@mad-scientist.com> | Tue Mar 16 07:07:06 2004 +0000 |
tree | a3a80f35e18259ab744898b2878ea1bb2e074f81 | |
parent | 0c65771f9232850364796090c717498b9ff583cf [diff] |
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