diff -r 385c2351153e -r 3c8f6e6014f4 devtools/testlib.py --- a/devtools/testlib.py Wed Apr 14 10:31:09 2010 +0200 +++ b/devtools/testlib.py Wed Apr 14 16:26:02 2010 +0200 @@ -492,9 +492,9 @@ def app_publish(self, req, path='view'): return self.app.publish(path, req) - def ctrl_publish(self, req): + def ctrl_publish(self, req, ctrl='edit'): """call the publish method of the edit controller""" - ctrl = self.vreg['controllers'].select('edit', req) + ctrl = self.vreg['controllers'].select(ctrl, req) try: result = ctrl.publish() req.cnx.commit()