Commit 45494e30 authored by Romain Courteaud's avatar Romain Courteaud

Do not trigger payzen alarms

parent 4a21eb56
...@@ -377,7 +377,10 @@ class testVifibMixin(ERP5TypeTestCase): ...@@ -377,7 +377,10 @@ class testVifibMixin(ERP5TypeTestCase):
self.login() self.login()
try: try:
for alarm in self.portal.portal_alarms.contentValues(): for alarm in self.portal.portal_alarms.contentValues():
if alarm.isEnabled() and (alarm.getId() != 'vifib_check_consistency'): if alarm.isEnabled() and (alarm.getId() not in \
('vifib_check_consistency',
'register_planned_payment_transaction_payzen',
'payzen_update_confirmed_payment_transaction')):
alarm.activeSense() alarm.activeSense()
finally: finally:
setSecurityManager(sm) setSecurityManager(sm)
......
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