File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/Magento/FunctionalTestingFramework/Util Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Magento Functional Testing Framework Changelog
99
1010### Fixes
1111* Fixed an issue where mftf would fail to parse test materials for extensions installed under ` vendor ` .
12+ * Fixed a Windows compatibility issue around the use of Magento's ` ComponentRegistrar ` to aggregate paths.
1213* Fixed an issue where an ` element ` with no ` type ` would cause PHP warnings during test runs.
1314
14152.3.9
Original file line number Diff line number Diff line change @@ -553,7 +553,9 @@ private function getRegisteredModuleList()
553553 $ allComponents = array_merge ($ allComponents , $ components ->getPaths ($ componentType ));
554554 }
555555 array_walk ($ allComponents , function (&$ value ) {
556- $ value .= DIRECTORY_SEPARATOR . 'Test ' . DIRECTORY_SEPARATOR . 'Mftf ' ;
556+ // Magento stores component paths with unix DIRECTORY_SEPARATOR, need to stay uniform and convert
557+ $ value .= '/Test/Mftf ' ;
558+ $ value = realpath ($ value );
557559 });
558560 return $ allComponents ;
559561 } catch (TestFrameworkException $ e ) {
You can’t perform that action at this time.
0 commit comments