diff --git a/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php b/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php index e43f49bfa05..d84f07e67e8 100644 --- a/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php +++ b/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php @@ -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'); @@ -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'),