From 469a590a06c3103d2f602d69b2389d1687622029 Mon Sep 17 00:00:00 2001 From: Bryan Crowe Date: Thu, 24 Jul 2014 20:29:17 -0400 Subject: [PATCH] Fix CS in SmtpTransportTest --- tests/TestCase/Network/Email/SmtpTransportTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestCase/Network/Email/SmtpTransportTest.php b/tests/TestCase/Network/Email/SmtpTransportTest.php index 15966654866..5a51eaae8c2 100644 --- a/tests/TestCase/Network/Email/SmtpTransportTest.php +++ b/tests/TestCase/Network/Email/SmtpTransportTest.php @@ -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)); @@ -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));