- Fixes issue with incorrect transport being used for localhost sending

This commit is contained in:
Vlad
2016-02-24 11:56:29 -05:00
parent a883e1176c
commit ca7322933f
2 changed files with 2 additions and 5 deletions

View File

@@ -30,9 +30,7 @@ class PHPMailCest {
function itCanBuildMailer() {
$mailer = $this->mailer->buildMailer();
expect($mailer->getTransport()
->getHost())
->equals('localhost');
expect($mailer->getTransport() instanceof \Swift_MailTransport)->true();
}
function itCanCreateMessage() {