bugfix for people executing test_all to run the test suite. (call the
correct function)
This commit is contained in:
parent
0c65771f92
commit
bce64ec086
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue