We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e386744 commit ec5d25aCopy full SHA for ec5d25a
src/Magento/FunctionalTestingFramework/Test/Util/TestObjectExtractor.php
@@ -138,7 +138,7 @@ private function extractModuleName($path)
138
return "NO MODULE DETECTED";
139
}
140
$paths = explode(DIRECTORY_SEPARATOR, $path);
141
- if (!isset($paths[count($paths)-3])) {
+ if (count($paths) < 3) {
142
143
} elseif ($paths[count($paths)-3] == "Mftf") {
144
// app/code/Magento/[Analytics]/Test/Mftf/Test/SomeText.xml
0 commit comments