Skip to content

Commit

Permalink
Fixing ModelDeleTest because of changes on the way datasources handle…
Browse files Browse the repository at this point in the history
… boolean fields
  • Loading branch information
lorenzo committed Jan 6, 2011
1 parent 2cc4e0e commit 296b8dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Cake/tests/cases/libs/model/model_delete.test.php
Expand Up @@ -44,7 +44,7 @@ function testDeleteHabtmReferenceWithConditions() {
array(
'id' => 3,
'syfile_id' => 3,
'published' => 0,
'published' => false,
'name' => 'Item 3',
'ItemsPortfolio' => array(
'id' => 3,
Expand All @@ -54,7 +54,7 @@ function testDeleteHabtmReferenceWithConditions() {
array(
'id' => 4,
'syfile_id' => 4,
'published' => 0,
'published' => false,
'name' => 'Item 4',
'ItemsPortfolio' => array(
'id' => 4,
Expand All @@ -64,7 +64,7 @@ function testDeleteHabtmReferenceWithConditions() {
array(
'id' => 5,
'syfile_id' => 5,
'published' => 0,
'published' => false,
'name' => 'Item 5',
'ItemsPortfolio' => array(
'id' => 5,
Expand Down

0 comments on commit 296b8dd

Please sign in to comment.