Fix a few more tests that sometimes fail on postgres.

This commit is contained in:
mark_story 2012-10-28 16:11:07 -04:00
parent 667dfd308f
commit ab2ce29bd6

View file

@ -4959,7 +4959,9 @@ class ModelReadTest extends BaseModelTest {
public function testAssociationAfterFind() {
$this->loadFixtures('Post', 'Author', 'Comment');
$TestModel = new Post();
$result = $TestModel->find('all');
$result = $TestModel->find('all', array(
'order' => array('Post.id' => 'ASC')
));
$expected = array(
array(
'Post' => array(
@ -5028,6 +5030,7 @@ class ModelReadTest extends BaseModelTest {
)));
$result = $Author->find('all', array(
'conditions' => array('Author.id' => 1),
'order' => array('Author.id' => 'ASC'),
'recursive' => 2
));
$expected = array(