mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing ModelDeleTest because of changes on the way datasources handle boolean fields
This commit is contained in:
parent
2cc4e0e3cb
commit
296b8dd77b
1 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@ class ModelDeleteTest extends BaseModelTest {
|
|||
array(
|
||||
'id' => 3,
|
||||
'syfile_id' => 3,
|
||||
'published' => 0,
|
||||
'published' => false,
|
||||
'name' => 'Item 3',
|
||||
'ItemsPortfolio' => array(
|
||||
'id' => 3,
|
||||
|
@ -54,7 +54,7 @@ class ModelDeleteTest extends BaseModelTest {
|
|||
array(
|
||||
'id' => 4,
|
||||
'syfile_id' => 4,
|
||||
'published' => 0,
|
||||
'published' => false,
|
||||
'name' => 'Item 4',
|
||||
'ItemsPortfolio' => array(
|
||||
'id' => 4,
|
||||
|
@ -64,7 +64,7 @@ class ModelDeleteTest extends BaseModelTest {
|
|||
array(
|
||||
'id' => 5,
|
||||
'syfile_id' => 5,
|
||||
'published' => 0,
|
||||
'published' => false,
|
||||
'name' => 'Item 5',
|
||||
'ItemsPortfolio' => array(
|
||||
'id' => 5,
|
||||
|
|
Loading…
Reference in a new issue