From 053ebf211e7521dd87268ac0907d687a7ffc6aae Mon Sep 17 00:00:00 2001 From: ADmad Date: Sat, 24 Dec 2011 01:04:38 +0530 Subject: [PATCH] More test case fixing --- lib/Cake/Test/Case/Model/ModelWriteTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Cake/Test/Case/Model/ModelWriteTest.php b/lib/Cake/Test/Case/Model/ModelWriteTest.php index 1595cb1d5..835de0a71 100644 --- a/lib/Cake/Test/Case/Model/ModelWriteTest.php +++ b/lib/Cake/Test/Case/Model/ModelWriteTest.php @@ -5642,7 +5642,6 @@ class ModelWriteTest extends BaseModelTest { $TestModel = new Comment(); $expected = $TestModel->find('first', array( - 'fields' => array('Comment.*', 'Attachment.*'), 'conditions' => array('Comment.id' => 5), 'recursive' => 0 )); @@ -5664,7 +5663,6 @@ class ModelWriteTest extends BaseModelTest { $this->assertTrue($result); $result = $TestModel->find('first', array( - 'fields' => array('Comment.*', 'Attachment.*'), 'conditions' => array('Comment.id' => 5), 'recursive' => 0 ));