bugfix for people executing test_all to run the test suite. (call the

correct function)
This commit is contained in:
Gregory P. Smith 2004-03-16 07:07:06 +00:00
parent 0c65771f92
commit bce64ec086
1 changed files with 1 additions and 1 deletions

View 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