Fix ordering on another query that was failing on travis-ci.

This commit is contained in:
mark_story 2012-11-10 14:24:30 -05:00
parent 7360abb0fe
commit 644d47c843

View file

@ -2993,7 +2993,8 @@ class ContainableBehaviorTest extends CakeTestCase {
'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');
@ -3016,7 +3017,10 @@ class ContainableBehaviorTest extends CakeTestCase {
'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'),