More test case fixing

This commit is contained in:
ADmad 2011-12-24 01:04:38 +05:30
parent f24c01c1f4
commit 053ebf211e

View file

@ -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
));