Commit 44a0bc02 authored by Nicolas Dumazet's avatar Nicolas Dumazet

Use booleans instead of 1/0 in default Test template


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@29806 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 500cddcb
...@@ -579,15 +579,15 @@ class Test(ERP5TypeTestCase): ...@@ -579,15 +579,15 @@ class Test(ERP5TypeTestCase):
def enableLightInstall(self): def enableLightInstall(self):
""" """
Return if we should do a light install (1) or not (0) Return if we should do a light install or not
""" """
return 1 return True
def enableActivityTool(self): def enableActivityTool(self):
""" """
Return if we should create (1) or not (0) an activity tool Return if we should create or not an activity tool
""" """
return 1 return True
def afterSetUp(self): def afterSetUp(self):
""" """
......
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