summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2004-03-16 07:07:06 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2004-03-16 07:07:06 (GMT)
commitbce64ec086026464c14bdedc00599a837d5ad6ef (patch)
treea3a80f35e18259ab744898b2878ea1bb2e074f81 /Lib/bsddb
parent0c65771f9232850364796090c717498b9ff583cf (diff)
downloadcpython-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)
Diffstat (limited to 'Lib/bsddb')
-rw-r--r--Lib/bsddb/test/test_all.py2
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