Browse Source

Fix coding standards.

mark_story 12 years ago
parent
commit
072ec650e6
1 changed files with 1 additions and 2 deletions
  1. 1 2
      tests/TestCase/Console/Command/Task/ControllerTaskTest.php

+ 1 - 2
tests/TestCase/Console/Command/Task/ControllerTaskTest.php

@@ -84,7 +84,6 @@ class ControllerTaskTest extends TestCase {
 		TableRegistry::get('BakeArticles', [
 			'className' => __NAMESPACE__ . '\BakeArticlesTable'
 		]);
-
 	}
 
 /**
@@ -199,7 +198,7 @@ class ControllerTaskTest extends TestCase {
 			->method('createFile')
 			->with($filename, $this->anything());
 		$result = $this->Task->bake('BakeArticles');
-		
+
 		$this->assertTextContains('namespace App\Controller\Admin;', $result);
 		$this->assertTextContains('use App\Controller\AppController;', $result);
 	}