Skip to content

Commit 25e6635

Browse files
committed
MQE-2173: CUSTOM_MODULE_PATHS env variable doesn't use all paths
1 parent 9e14ab4 commit 25e6635

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,8 @@ 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];
751+
$customModulePaths[$this->findVendorAndModuleNameFromPath(trim($path))] = $path;
751752
}
752753

753754
return $customModulePaths;

0 commit comments

Comments
 (0)