Commit 5c64db76 authored by iv's avatar iv

ERP5Workflow: set variable expression correctly

in testERP5Workflow, a test was failing due to changes in
storage of expressions (we now store the expression object
so we don't have to recompile the expression all the time)
parent 32d0382e
No related merge requests found
......@@ -126,7 +126,7 @@ class TestERP5Workflow(ERP5TypeTestCase):
variable1 = workflow.newContent(portal_type='Workflow Variable',
title='actor')
variable1.setReference('actor')
variable1.variable_expression = 'user/getUserName'
variable1.setVariableExpression('user/getUserName')
self.getPortalObject().portal_types._getOb('Folder')\
.edit(type_workflow_list=('wf'))
doc = self.portal.newContent(portal_type='Folder', id='test_doc')
......
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