Browse Source

Fixed CS error

José Lorenzo Rodríguez 12 years ago
parent
commit
eb0f80560b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Console/Command/Task/ModelTaskTest.php

+ 1 - 1
tests/TestCase/Console/Command/Task/ModelTaskTest.php

@@ -436,7 +436,7 @@ class ModelTaskTest extends TestCase {
 			'bake_article_id' => ['rule' => 'numeric', 'allowEmpty' => false],
 			'bake_user_id' => ['rule' => 'numeric', 'allowEmpty' => false],
 			'comment' => ['rule' => false, 'allowEmpty' => true],
-			'published' => ['rule' => false,'allowEmpty' => true]
+			'published' => ['rule' => false, 'allowEmpty' => true]
 		];
 		$this->assertEquals($expected, $result);
 	}