Commit 9e69dd5f authored by Sebastien Robin's avatar Sebastien Robin

change default value of debug to False in order to avoid

errors when doing int(debug)

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39538 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b9303924
...@@ -1203,7 +1203,7 @@ def initialize( context ): ...@@ -1203,7 +1203,7 @@ def initialize( context ):
return result return result
security.declareProtected(Permissions.ManagePortal, 'runLiveTest') security.declareProtected(Permissions.ManagePortal, 'runLiveTest')
def runLiveTest(self, test_list=None, run_only=None, debug=None, def runLiveTest(self, test_list=None, run_only=None, debug=False,
verbose=False): verbose=False):
""" """
Launch live tests Launch live tests
......
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