Commit ea3cca1c authored by Romain Courteaud's avatar Romain Courteaud

Remove useless if.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@17101 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent cecdf2ad
......@@ -737,11 +737,8 @@ class TestCalendar(ERP5TypeTestCase):
sequence_list.addSequenceString(sequence_string)
sequence_list.play(self)
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestCalendar))
return suite
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestCalendar))
return suite
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