Skip to content

Commit 8305d61

Browse files
fix merge
1 parent abe2a23 commit 8305d61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,9 +357,9 @@ public function testBindingsOnChildDefinitions()
357357
$pass->process($container);
358358

359359
$locator = $container->getDefinition((string) $resolver->getArgument(0))->getArgument(0);
360-
$this->assertInstanceOf(ServiceClosureArgument::class, $locator['child:fooAction']);
360+
$this->assertInstanceOf(ServiceClosureArgument::class, $locator['child::fooAction']);
361361

362-
$locator = $container->getDefinition((string) $locator['child:fooAction']->getValues()[0])->getArgument(0);
362+
$locator = $container->getDefinition((string) $locator['child::fooAction']->getValues()[0])->getArgument(0);
363363
$this->assertInstanceOf(ServiceClosureArgument::class, $locator['someArg']);
364364
$this->assertEquals(new Reference('parent'), $locator['someArg']->getValues()[0]);
365365
}

0 commit comments

Comments
 (0)