8000 minor #58043 [DependencyInjection] fix tests (xabbuh) · symfony/symfony@00f1b63 · GitHub
[go: up one dir, main page]

Skip to content

Commit 00f1b63

Browse files
committed
minor #58043 [DependencyInjection] fix tests (xabbuh)
This PR was merged into the 7.1 branch. Discussion ---------- [DependencyInjection] fix tests | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT Commits ------- 458ab22 fix tests
2 parents e880923 + 458ab22 commit 00f1b63

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,11 @@ public function testPrependExtensionConfig()
612612
$loader->load('extensions/services1.xml');
613613

614614
$expected = [
615-
['foo' => 'ping'],
615+
[
616+
'foo' => 'ping',
617+
'another' => null,
618+
'another2' => '%project.parameter.foo%',
619+
],
616620
['foo' => 'bar'],
617621
];
618622
$this->assertSame($expected, $container->getExtensionConfig('http://www.example.com/schema/project'));

0 commit comments

Comments
 (0)
0