Skip to content

Commit 947c5a4

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: [VarDumper] Fix missing support for dumping PHP7 return type [travis] disable symfony_debug ext when deps!=no Do not normalize the kernel root directory path (see symfony/symfony#15474). Don't trigger deprecation on interfaces [Debug] Ignore silencing for deprecations [ci] Run minimal versions on appveyor only Fix appveyor file consistently use str_replace to unify directory separators (remaining)
2 parents 3484a54 + a6db96d commit 947c5a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Functional/SetAclCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function testSetAclRole()
106106
$setAclCommandTester = new CommandTester($setAclCommand);
107107
$setAclCommandTester->execute(array(
108108
'command' => 'acl:set',
109-
'arguments' => array($grantedPermission, sprintf('%s:%s', strtr(self::OBJECT_CLASS, '\\', '/'), $objectId)),
109+
'arguments' => array($grantedPermission, sprintf('%s:%s', str_replace('\\', '/', self::OBJECT_CLASS), $objectId)),
110110
'--role' => array($role),
111111
));
112112

0 commit comments

Comments
 (0)