[Erp5-report] r13519 - /erp5/trunk/products/ERP5Type/tests/ERP5TypeTestCase.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Mar 20 13:51:30 CET 2007


Author: vincent
Date: Tue Mar 20 13:51:28 2007
New Revision: 13519

URL: http://svn.erp5.org?rev=13519&view=rev
Log:
Forgot to update variable name of object on which the transition is passed.

Modified:
    erp5/trunk/products/ERP5Type/tests/ERP5TypeTestCase.py

Modified: erp5/trunk/products/ERP5Type/tests/ERP5TypeTestCase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/tests/ERP5TypeTestCase.py?rev=13519&r1=13518&r2=13519&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/tests/ERP5TypeTestCase.py (original)
+++ erp5/trunk/products/ERP5Type/tests/ERP5TypeTestCase.py Tue Mar 20 13:51:28 2007
@@ -500,10 +500,10 @@
         If error_message is provided, it is asserted to be equal to the last
         workflow history error message.
       """
-      reference_history_length = len(self.workflow_tool.getInfoFor(ob=self.account_incident, name='history', wf_id=workflow_id))
+      reference_history_length = len(self.workflow_tool.getInfoFor(ob=object, name='history', wf_id=workflow_id))
       reference_workflow_state = object.getSimulationState()
-      self.assertRaises(ValidationFailed, self.workflow_tool.doActionFor, self.account_incident, transition_id, wf_id=workflow_id)
-      workflow_history = self.workflow_tool.getInfoFor(ob=self.account_incident, name='history', wf_id=workflow_id)
+      self.assertRaises(ValidationFailed, self.workflow_tool.doActionFor, object, transition_id, wf_id=workflow_id)
+      workflow_history = self.workflow_tool.getInfoFor(ob=object, name='history', wf_id=workflow_id)
       self.assertEqual(len(workflow_history), reference_history_length + 1)
       if error_message is not None:
         self.assertEqual(str(workflow_history[-1]['error_message']), error_message)




More information about the Erp5-report mailing list