Skip to content

Commit

Permalink
Fix CS in SmtpTransportTest
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrowe committed Jul 25, 2014
1 parent 815ad1c commit 469a590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Network/Email/SmtpTransportTest.php
Expand Up @@ -511,7 +511,7 @@ public function testExplicitDisconnect() {
* @return void
*/
public function testExplicitDisconnectNotConnected() {
$callback = function($arg) {
$callback = function($arg) {
$this->assertNotEquals("QUIT\r\n", $arg);
};
$this->socket->expects($this->any())->method('write')->will($this->returnCallback($callback));
Expand All @@ -532,7 +532,7 @@ public function testKeepAlive() {
$email->to('cake@cakephp.org', 'CakePHP');
$email->expects($this->exactly(2))->method('message')->will($this->returnValue(array('First Line')));

$callback = function($arg) {
$callback = function($arg) {
$this->assertNotEquals("QUIT\r\n", $arg);
};
$this->socket->expects($this->any())->method('write')->will($this->returnCallback($callback));
Expand Down

0 comments on commit 469a590

Please sign in to comment.