]> granicus.if.org Git - python/commitdiff
bugfix for people executing test_all to run the test suite. (call the
authorGregory P. Smith <greg@mad-scientist.com>
Tue, 16 Mar 2004 07:07:06 +0000 (07:07 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Tue, 16 Mar 2004 07:07:06 +0000 (07:07 +0000)
correct function)

Lib/bsddb/test/test_all.py

index 3bf70d7db02c23c8394bac4ad504b077fa32c3d1..7b1bf3d29428ac7c03e5f345af60bdf22d3a603b 100644 (file)
@@ -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