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

minor style changes

parent 0d255eb4
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
import unittest import unittest
from lxml import etree from lxml import etree
import textwrap
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from AccessControl.SecurityManagement import newSecurityManager from AccessControl.SecurityManagement import newSecurityManager
...@@ -162,11 +163,11 @@ class TestListBox(ERP5TypeTestCase): ...@@ -162,11 +163,11 @@ class TestListBox(ERP5TypeTestCase):
portal.portal_skins.custom, portal.portal_skins.custom,
list_method_id, list_method_id,
'selection=None, sort_on=None, **kw', 'selection=None, sort_on=None, **kw',
r""" textwrap.dedent(r"""
if sort_on != [('title', 'ASC'), ('uid', 'ASC')]: if sort_on != [('title', 'ASC'), ('uid', 'ASC')]:
raise AssertionError('sort_on is %r' % sort_on) raise AssertionError('sort_on is %r' % sort_on)
return [] return []
""") """))
# set the listbox to use this as list method # set the listbox to use this as list method
listbox = portal.FooModule_viewFooList.listbox listbox = portal.FooModule_viewFooList.listbox
...@@ -194,12 +195,13 @@ return [] ...@@ -194,12 +195,13 @@ return []
portal.portal_skins.custom, portal.portal_skins.custom,
list_method_id, list_method_id,
'selection=None, dummy_default_param=None, **kw', 'selection=None, dummy_default_param=None, **kw',
""" textwrap.dedent(
if dummy_default_param != 'dummy value': """
if dummy_default_param != 'dummy value':
raise AssertionError('recieved wrong arguments: %s instead of "dummy value"' raise AssertionError('recieved wrong arguments: %s instead of "dummy value"'
% dummy_default_param ) % dummy_default_param )
return [] return []
""") """))
# set the listbox to use this as list method # set the listbox to use this as list method
listbox = portal.FooModule_viewFooList.listbox listbox = portal.FooModule_viewFooList.listbox
...@@ -584,7 +586,8 @@ return [] ...@@ -584,7 +586,8 @@ return []
renderer.getSelectedColumnList()) renderer.getSelectedColumnList())
# default(no list_style) # default(no list_style)
self.assertEqual(getListBoxRenderer(listbox).getDefaultDisplayStyle(), getListBoxRenderer(listbox).getListboxDisplayStyle()) self.assertEqual(getListBoxRenderer(listbox).getDefaultDisplayStyle(),
getListBoxRenderer(listbox).getListboxDisplayStyle())
self.assertSameSet([('id', u'ID'), ('title', u'Title'), ('getQuantity', u'Quantity')], self.assertSameSet([('id', u'ID'), ('title', u'Title'), ('getQuantity', u'Quantity')],
getListBoxRenderer(listbox).getSelectedColumnList()) getListBoxRenderer(listbox).getSelectedColumnList())
......
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