Commit 90f59b85 authored by Vincent Pelletier's avatar Vincent Pelletier

Do not hide the error if module cannot be found.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18569 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d1e5290b
......@@ -66,10 +66,10 @@ class TestERP5BankingCashMovementNewNotEmitted(TestERP5BankingMonetaryReceptionM
return "ERP5BankingCashMovementNewNotEmitted"
def getCashMovementModule(self):
return getattr(self.getPortal(), 'cash_movement_new_not_emmited_module', None)
return getattr(self.getPortal(), 'cash_movement_new_not_emmited_module')
def getMonetaryReceptionModule(self):
return getattr(self.getPortal(), 'monetary_reception_module', None)
return getattr(self.getPortal(), 'monetary_reception_module')
def afterSetUp(self):
"""
......
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