Commit f1374f63 authored by Jérome Perrin's avatar Jérome Perrin

better formatting for error output

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42428 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent dd368c3b
......@@ -243,8 +243,11 @@ class TestXHTML(ERP5TypeTestCase):
Usually we should not have duplicates except in some rare cases
described in SkinsTool_getDuplicateSelectionNameDict
"""
duplicating_selection_name_dict = self.portal.portal_skins.SkinsTool_getDuplicateSelectionNameDict()
self.assertEquals(duplicating_selection_name_dict, {})
portal_skins = self.portal.portal_skins
duplicating_selection_name_dict = portal_skins.SkinsTool_getDuplicateSelectionNameDict()
self.assertFalse(duplicating_selection_name_dict,
"Repeated listbox selection names:\n" +
portal_skins.SkinsTool_checkDuplicateSelectionName())
def test_PythonScriptSyntax(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