Skip to content

Commit

Permalink
Fix a few more tests that sometimes fail on postgres.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 28, 2012
1 parent 667dfd3 commit ab2ce29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/Cake/Test/Case/Model/ModelReadTest.php
Expand Up @@ -4959,7 +4959,9 @@ public function testUnBindMultipleTimesWithDifferentResetSettings() {
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(
Expand Down Expand Up @@ -5028,6 +5030,7 @@ public function testAssociationAfterFind() {
)));
$result = $Author->find('all', array(
'conditions' => array('Author.id' => 1),
'order' => array('Author.id' => 'ASC'),
'recursive' => 2
));
$expected = array(
Expand Down

0 comments on commit ab2ce29

Please sign in to comment.