diff --git a/addons/project_scrum/test/sprint_process.yml b/addons/project_scrum/test/sprint_process.yml index d3411204f2a..8c8f70b1188 100644 --- a/addons/project_scrum/test/sprint_process.yml +++ b/addons/project_scrum/test/sprint_process.yml @@ -53,9 +53,8 @@ ctx.update({'active_model': 'project.scrum.meeting', 'active_id': ref("scrum_meeting_0"), 'active_ids': [ref("scrum_meeting_0")]}) vals = self.default_get(cr, uid , [], context=ctx) try: - new_id = self.create(cr, uid, {'email_to': 'xyz@mycompany.com', 'subject': 'test'}) - # We don't actually send the email, since this could log an error due to config... - # self.send_mail(cr, uid, [new_id], context=ctx) + new_id = self.create(cr, uid, {'email_from': 'test@openerp.com', 'email_to': 'xyz@mycompany.com', 'subject': 'test'}) + self.send_mail(cr, uid, [new_id], context=ctx) except Exception, e: pass -