diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2004-03-16 07:07:06 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2004-03-16 07:07:06 (GMT) |
commit | bce64ec086026464c14bdedc00599a837d5ad6ef (patch) | |
tree | a3a80f35e18259ab744898b2878ea1bb2e074f81 | |
parent | 0c65771f9232850364796090c717498b9ff583cf (diff) | |
download | cpython-bce64ec086026464c14bdedc00599a837d5ad6ef.zip cpython-bce64ec086026464c14bdedc00599a837d5ad6ef.tar.gz cpython-bce64ec086026464c14bdedc00599a837d5ad6ef.tar.bz2 |
bugfix for people executing test_all to run the test suite. (call the
correct function)
-rw-r--r-- | Lib/bsddb/test/test_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |