Skip to content

Commit

Permalink
fix assert on _data property
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingmedia committed Aug 30, 2016
1 parent fc5e8a9 commit 246682d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/TestCase/ORM/TableTest.php
Expand Up @@ -3049,7 +3049,7 @@ public function testDeleteCallbacks()
->with($this->logicalAnd(
$this->attributeEqualTo('_name', 'Model.beforeDelete'),
$this->attributeEqualTo(
'data',
'_data',
['entity' => $entity, 'options' => $options]
)
));
Expand All @@ -3059,7 +3059,7 @@ public function testDeleteCallbacks()
->with($this->logicalAnd(
$this->attributeEqualTo('_name', 'Model.afterDelete'),
$this->attributeEqualTo(
'data',
'_data',
['entity' => $entity, 'options' => $options]
)
));
Expand All @@ -3069,7 +3069,7 @@ public function testDeleteCallbacks()
->with($this->logicalAnd(
$this->attributeEqualTo('_name', 'Model.afterDeleteCommit'),
$this->attributeEqualTo(
'data',
'_data',
['entity' => $entity, 'options' => $options]
)
));
Expand Down

0 comments on commit 246682d

Please sign in to comment.