ソースを参照

remove debug statements

euromark 12 年 前
コミット
fdc282a29d

+ 1 - 1
Test/Case/Model/Behavior/PasswordableBehaviorTest.php

@@ -326,7 +326,7 @@ class PasswordableBehaviorTest extends CakeTestCase {
 		$this->User->set($data);
 		$is = $this->User->save();
 		$this->assertFalse((bool)$is);
-		debug($this->User->validationErrors);
+		//debug($this->User->validationErrors);
 
 		$this->User->create();
 		$data = array(

+ 2 - 2
Test/Case/Model/Behavior/SortableBehaviorTest.php

@@ -40,7 +40,7 @@ class SortableBehaviorTest extends MyCakeTestCase {
 	 */
 	public function testBasicUp() {
 		$list = $this->_getList();
-		debug($list);
+		//debug($list);
 
 		$positionBefore = $this->_getPosition(4);
 		$this->assertSame(3, $positionBefore);
@@ -68,7 +68,7 @@ class SortableBehaviorTest extends MyCakeTestCase {
 	 */
 	public function testUp() {
 		$list = $this->_getList();
-		debug($list);
+		//debug($list);
 
 		$positionBefore = $this->_getPosition(4);
 		$this->assertSame(3, $positionBefore);