Skip to content

Commit

Permalink
fixing a could CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Dec 20, 2013
1 parent aad911a commit 51c5fdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cake/Test/TestCase/ORM/Association/BelongsToManyTest.php
Expand Up @@ -1079,7 +1079,7 @@ public function testSaveWithReplace() {
['tags']
);
$entity = new Entity([
'id' =>1,
'id' => 1,
'tags' => [
new Entity(['name' => 'foo'])
]
Expand All @@ -1105,7 +1105,7 @@ public function testSaveWithReplaceReturnFalse() {
['tags']
);
$entity = new Entity([
'id' =>1,
'id' => 1,
'tags' => [
new Entity(['name' => 'foo'])
]
Expand Down

0 comments on commit 51c5fdd

Please sign in to comment.