Skip to content

Commit

Permalink
Fix lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 16, 2017
1 parent 988dd17 commit 4d962f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Mailer/Transport/SmtpTransportTest.php
Expand Up @@ -94,8 +94,8 @@ public function testConnectEhlo()
$this->socket->expects($this->any())
->method('read')
->will($this->onConsecutiveCalls(
"220 Welcome message\r\n",
"250 Accepted\r\n"
"220 Welcome message\r\n",
"250 Accepted\r\n"
));
$this->socket->expects($this->once())->method('write')->with("EHLO localhost\r\n");
$this->SmtpTransport->connect();
Expand Down

0 comments on commit 4d962f1

Please sign in to comment.