Skip to content

Commit 1919051

Browse files
authored
Service/alias names might be fqcns
removed strtolower
1 parent eb00509 commit 1919051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PhpUnit/ContainerBuilderHasAliasConstraint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private function evaluateServiceId(ContainerBuilder $containerBuilder, $returnRe
8080
*/
8181
$actualServiceId = (string) $alias;
8282

83-
$constraint = new IsEqual(strtolower($this->expectedServiceId));
83+
$constraint = new IsEqual($this->expectedServiceId);
8484
if (!$constraint->evaluate($actualServiceId, '', true)) {
8585
if ($returnResult) {
8686
return false;

0 commit comments

Comments
 (0)