Fixed test suite execution as a script

Don't know why I changed the defaultTest argument into a function when I
converted the test suite into a package: that argument should be really
a string.
This commit is contained in:
Daniele Varrazzo 2011-01-03 17:29:58 +01:00
parent 39dd577c90
commit a01700d478

View File

@ -55,4 +55,4 @@ def test_suite():
return suite
if __name__ == '__main__':
unittest.main(defaultTest=test_suite)
unittest.main(defaultTest='test_suite')