Skip to content

Commit

Permalink
Fix ordering on another query that was failing on travis-ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 10, 2012
1 parent 7360abb commit 644d47c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php
Expand Up @@ -2993,7 +2993,8 @@ public function testHasOneFieldsInContain() {
'User' => array(
'fields' => array('user')
)
)
),
'order' => 'Article.id ASC',
));
$this->assertTrue(isset($result[0]['Article']['title']), 'title missing %s');
$this->assertTrue(isset($result[0]['Article']['body']), 'body missing %s');
Expand All @@ -3016,7 +3017,10 @@ public function testFindConditionalBinding() {
'conditions' => array('created >=' => '2007-03-18 12:24')
)
));
$result = $this->Article->find('all', array('fields' => array('title'), 'order' => array('Article.id' => 'ASC')));
$result = $this->Article->find('all', array(
'fields' => array('title'),
'order' => array('Article.id' => 'ASC')
));
$expected = array(
array(
'Article' => array('id' => 1, 'title' => 'First Article'),
Expand Down

0 comments on commit 644d47c

Please sign in to comment.