Skip to content

Commit 7b6ec51

Browse files
authored
Merge pull request #1 from magento-commerce/MQE-2173
Mqe 2173: CUSTOM_MODULE_PATHS env variable doesn't use all paths
2 parents 9e14ab4 + 76c7df7 commit 7b6ec51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ private function getCustomModulePaths()
747747
}
748748

749749
foreach (explode(',', $paths) as $path) {
750-
$customModulePaths = [$this->findVendorAndModuleNameFromPath(trim($path)) => $path];
750+
$customModulePaths[$this->findVendorAndModuleNameFromPath(trim($path))] = $path;
751751
}
752752

753753
return $customModulePaths;

0 commit comments

Comments
 (0)