Skip to content

Commit 10e382d

Browse files
committed
MAGETWO-50594: testAclConfigFile uses full path name in test
1 parent d3ae207 commit 10e382d

File tree

1 file changed

+2
-1
lines changed
  • lib/internal/Magento/Framework/App/Utility

1 file changed

+2
-1
lines changed

lib/internal/Magento/Framework/App/Utility/Files.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ public static function composeDataSets(array $files)
162162
{
163163
$result = [];
164164
foreach ($files as $file) {
165-
$result[$file] = [$file];
165+
$key = str_replace(BP . '/', '', $file);
166+
$result[$key] = [$file];
166167
}
167168
return $result;
168169
}

0 commit comments

Comments
 (0)