We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aef976 commit aa9de30Copy full SHA for aa9de30
src/Magento/FunctionalTestingFramework/Config/FileResolver/Root.php
@@ -36,11 +36,13 @@ public function get($filename, $scope)
36
$altPath = MAGENTO_BP . DIRECTORY_SEPARATOR . 'dev/tests/acceptance';
37
38
if (realpath($altPath) && ($altPath !== TESTS_BP)) {
39
- $paths = array_merge($paths,
40
- glob(FilePathFormatter::format($altPath) . self::ROOT_SUITE_DIR
41
- . DIRECTORY_SEPARATOR . '*.xml'
42
- )
43
- );
+ $paths = array_merge(
+ $paths,
+ glob(
+ FilePathFormatter::format($altPath) . self::ROOT_SUITE_DIR
+ . DIRECTORY_SEPARATOR . '*.xml'
44
+ )
45
+ );
46
}
47
48
// Then merge this path into the module based paths
0 commit comments