Commit 94c7ecb9 authored by Sebastien Robin's avatar Sebastien Robin

added missing comma


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5934 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0c1eac27
......@@ -68,7 +68,7 @@ class TestBase(ERP5TypeTestCase):
def getBusinessTemplateList(self):
"""
"""
return ('erp5_base')
return ('erp5_base',)
def login(self, quiet=0, run=run_all_test):
uf = self.getPortal().acl_users
......
......@@ -76,7 +76,7 @@ class TestERP5Category(ERP5TypeTestCase):
Return the list of business templates.
"""
return ('erp5_base')
return ('erp5_base',)
def enableActivityTool(self):
"""
......
......@@ -74,7 +74,7 @@ class TestHR(ERP5TypeTestCase):
"""
Return the list of required business templates.
"""
return ('erp5_base')
return ('erp5_base',)
def afterSetUp(self, quiet=QUIET, run=RUN_ALL_TEST):
......
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