mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Change quotes to keep postgres happy.
This commit is contained in:
parent
530c95725f
commit
abf4af14a8
1 changed files with 1 additions and 1 deletions
|
@ -6256,7 +6256,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
|
||||
$TestModel->saveAssociated(array(
|
||||
'Post' => array(
|
||||
'title' => $db->expression('(SELECT "Post with Author")'),
|
||||
'title' => $db->expression("(SELECT 'Post with Author')"),
|
||||
'body' => 'This post will be saved with an author'
|
||||
),
|
||||
'Author' => array(
|
||||
|
|
Loading…
Reference in a new issue