Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9851928

Browse filesBrowse files
committed
fixed tests
1 parent 11a8524 commit 9851928
Copy full SHA for 9851928

File tree

Expand file treeCollapse file tree

1 file changed

+1
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-2
lines changed

‎src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
use Symfony\Component\DependencyInjection\Loader\ClosureLoader;
1919
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
2020
use Symfony\Component\DependencyInjection\Reference;
21-
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
2221
use Symfony\Component\Validator\Validation;
2322

2423
abstract class FrameworkExtensionTest extends TestCase
@@ -450,7 +449,7 @@ public function testObjectNormalizerRegistered()
450449
$definition = $container->getDefinition('serializer.normalizer.object');
451450
$tag = $definition->getTag('serializer.normalizer');
452451

453-
$this->assertEquals(ObjectNormalizer::class, $definition->getClass());
452+
$this->assertEquals('Symfony\Component\Serializer\Normalizer\ObjectNormalizer', $definition->getClass());
454453
$this->assertEquals(-1000, $tag[0]['priority']);
455454
}
456455

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.