Skip to content

Commit

Permalink
Fixing another postgres failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Oct 6, 2011
1 parent fca6fef commit ade9e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Model/ModelWriteTest.php
Expand Up @@ -2893,7 +2893,7 @@ public function testSaveAllAtomic() {
public function testSaveAllHasMany() {
$this->loadFixtures('Article', 'Comment');
$TestModel = new Article();
$TestModel->order = array('Article.created' => 'ASC');
$TestModel->hasMany['Comment']['order'] = array('Comment.created' => 'ASC');
$TestModel->belongsTo = $TestModel->hasAndBelongsToMany = array();

$result = $TestModel->saveAll(array(
Expand Down

0 comments on commit ade9e4d

Please sign in to comment.