Skip to content

Commit 5306f8a

Browse files
Merge branch '5.3' into 5.4
* 5.3: fix merge
2 parents c026f4b + 64ed180 commit 5306f8a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Tests/DependencyInjection/RegisterControllerArgumentLocatorsPassTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,7 @@ public function testAlias()
397397
$pass->process($container);
398398

399399
$locator = $container->getDefinition((string) $resolver->getArgument(0))->getArgument(0);
400-
401-
$services = array_keys($locator);
402-
sort($services);
403-
$this->assertSame([RegisterTestController::class.'::fooAction', 'foo::fooAction'], $services);
400+
$this->assertEqualsCanonicalizing([RegisterTestController::class.'::fooAction', 'foo::fooAction'], array_keys($locator));
404401
}
405402

406403
/**

0 commit comments

Comments
 (0)