[test] inline-creation requires petype argument to be selectable. Fix arguments order to make it clearer that 'template' is an argument of the test class .view method stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 24 Feb 2010 10:34:37 +0100
branchstable
changeset 4677 c701aac36f5c
parent 4676 b0937a191f94
child 4678 45661175f1da
[test] inline-creation requires petype argument to be selectable. Fix arguments order to make it clearer that 'template' is an argument of the test class .view method
web/test/unittest_views_editforms.py
--- a/web/test/unittest_views_editforms.py	Wed Feb 24 10:33:31 2010 +0100
+++ b/web/test/unittest_views_editforms.py	Wed Feb 24 10:34:37 2010 +0100
@@ -166,14 +166,14 @@
         geid = self.execute('CWGroup X LIMIT 1')[0][0]
         rset = self.execute('CWUser X LIMIT 1')
         self.view('inline-edition', rset, row=0, col=0, rtype='in_group',
-                  peid=geid, role='object', template=None, i18nctx='',
-                  pform=MOCKPFORM).source
+                  peid=geid, role='object', i18nctx='', pform=MOCKPFORM,
+                  template=None).source
 
     def test_automatic_inline_creation_formview(self):
         geid = self.execute('CWGroup X LIMIT 1')[0][0]
         self.view('inline-creation', None, etype='CWUser', rtype='in_group',
-                  peid=geid, template=None, i18nctx='', role='object',
-                  pform=MOCKPFORM).source
+                  peid=geid, petype='CWGroup', i18nctx='', role='object', pform=MOCKPFORM,
+                  template=None)
 
 MOCKPFORM = mock_object(form_previous_values={}, form_valerror=None)