8000 [DependencyInjection] Fix tests on configuration prepend · symfony/symfony@19310db · GitHub
[go: up one dir, main page]

Skip to content

Commit 19310db

Browse files
[DependencyInjection] Fix tests on configuration prepend
1 parent 37f04cf commit 19310db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Tests/DependencyInjection/MergeExtensionConfigurationPassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function testFooBundle()
4848
$configPass = new MergeExtensionConfigurationPass(['loaded', 'acme_foo']);
4949
$configPass->process($container);
5050

51-
$this->assertSame([[], ['bar' => 'baz']], $container->getExtensionConfig('loaded'), '->prependExtension() prepends an extension config');
51+
$this->assertSame([['bar' => 'baz'], []], $container->getExtensionConfig('loaded'), '->prependExtension() prepends an extension config');
5252
$this->assertTrue($container->hasDefinition('acme_foo.foo'), '->loadExtension() registers a service');
5353
$this->assertTrue($container->hasDefinition('acme_foo.bar'), '->loadExtension() imports a service');
5454
$this->assertTrue($container->hasParameter('acme_foo.config'), '->loadExtension() sets a parameter');

0 commit comments

Comments
 (0)
0