mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-06 11:32:40 +00:00
fix failing test, caused by postgres ordering
This commit is contained in:
parent
b6f99bc0b9
commit
97f48dcdb3
1 changed files with 2 additions and 1 deletions
|
@ -4741,7 +4741,8 @@ class ModelWriteTest extends BaseModelTest {
|
|||
|
||||
$result = $TestModel->find('all', array(
|
||||
'recursive' => -1,
|
||||
'fields' => array('author_id', 'title','body','published')
|
||||
'fields' => array('author_id', 'title','body','published'),
|
||||
'order' => array('Post.created' => 'ASC')
|
||||
));
|
||||
|
||||
$expected = array(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue