Kaydet (Commit) bce64ec0 authored tarafından Gregory P. Smith's avatar Gregory P. Smith

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

correct function)
üst 0c65771f
...@@ -66,7 +66,7 @@ def suite(): ...@@ -66,7 +66,7 @@ def suite():
alltests = unittest.TestSuite() alltests = unittest.TestSuite()
for name in test_modules: for name in test_modules:
module = __import__(name) module = __import__(name)
alltests.addTest(module.suite()) alltests.addTest(module.test_suite())
return alltests return alltests
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment