Skip to content

Commit acecdcf

Browse files
author
Eugene Tulika
committed
MAGETWO-44931: [HHVM] Tests of different groups failed to start
- Fixed api-functional tests
1 parent 2160a97 commit acecdcf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dev/tests/integration/framework/Magento/TestFramework/Application.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,9 @@ private function copyAppConfigFiles()
498498
foreach ($globalConfigFiles as $file) {
499499
$targetFile = $this->_configDir . str_replace($this->_globalConfigDir, '', $file);
500500
$this->_ensureDirExists(dirname($targetFile));
501-
copy($file, $targetFile);
501+
if ($file !== $targetFile) {
502+
copy($file, $targetFile);
503+
}
502504
}
503505
}
504506

0 commit comments

Comments
 (0)