Commit 2145f38e authored by Łukasz Nowak's avatar Łukasz Nowak

- remove failed activities, putting them to -8 is not good enough


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28717 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e5976f4c
...@@ -240,7 +240,7 @@ class TestBPMMixin(ERP5TypeTestCase): ...@@ -240,7 +240,7 @@ class TestBPMMixin(ERP5TypeTestCase):
activity_connection = self.portal.cmf_activity_sql_connection activity_connection = self.portal.cmf_activity_sql_connection
for table in 'message', 'message_queue': for table in 'message', 'message_queue':
activity_connection.manage_test( activity_connection.manage_test(
'update %s set processing_node=-8 where processing_node=-2' % table) 'delete from %s where processing_node=-2' % table)
# remove not needed rules # remove not needed rules
self.portal.portal_rules.manage_delObjects( self.portal.portal_rules.manage_delObjects(
ids=['test_invoice_transaction_rule']) ids=['test_invoice_transaction_rule'])
......
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