Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 30737c0

Browse files
committed
Fix tests
1 parent 484f091 commit 30737c0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,10 +669,9 @@ public function testAttributesContextNormalize()
669669
$objectDummy->setBaz(true);
670670
$objectDummy->setObject($objectInner);
671671

672-
$context = array('attributes' => array('foo', 'baz', 'object' => array('foo')));
672+
$context = array('attributes' => array('baz', 'object' => array('foo')));
673673
$this->assertEquals(
674674
array(
675-
'foo' => 'foo',
676675
'baz' => true,
677676
'object' => array('foo' => 'innerFoo'),
678677
),

0 commit comments

Comments
 (0)