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
9
9
10
10
### Fixes
11
11
* 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.
12
13
* Fixed an issue where an ` element ` with no ` type ` would cause PHP warnings during test runs.
13
14
14
15
2.3.9
Original file line number Diff line number Diff line change @@ -553,7 +553,9 @@ private function getRegisteredModuleList()
553
553
$ allComponents = array_merge ($ allComponents , $ components ->getPaths ($ componentType ));
554
554
}
555
555
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 );
557
559
});
558
560
return $ allComponents ;
559
561
} catch (TestFrameworkException $ e ) {
You can’t perform that action at this time.
0 commit comments