----------------------------------------
* CRM-13890: Participant status is not being passed to message template for online event registration
http://issues.civicrm.org/jira/browse/CRM-13890
$values = array();
$this->assertFalse(empty($this->objects['event']));
$msg = $this->IPN->sendMail($this->input, $this->ids, $this->objects, $values, False,True);
- $this->assertContains('registration has been received and your status has been updated to registered', $msg['body']);
+ $this->assertContains('registration has been received and your status has been updated to Attended.', $msg['body']);
$this->assertContains('Annual CiviCRM meet', $msg['html']);
}
$mut->checkMailLog(array(
'Annual CiviCRM meet',
'Event',
- 'This letter is a confirmation that your registration has been received and your status has been updated to registered for the following',
+ 'This letter is a confirmation that your registration has been received and your status has been updated to Registered.',
));
$mut->stop();