Browse Source

Fix CS in SmtpTransportTest

Bryan Crowe 11 years ago
parent
commit
469a590a06
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/Network/Email/SmtpTransportTest.php

+ 2 - 2
tests/TestCase/Network/Email/SmtpTransportTest.php

@@ -511,7 +511,7 @@ class SmtpTransportTest extends TestCase {
  * @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 @@ class SmtpTransportTest extends TestCase {
 		$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));