Skip to content

Commit 9309e9f

Browse files
committed
MQE-987: Decouple MFTF from Magento
- fix pathing issue following windows compat
1 parent 83d8171 commit 9309e9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/tests/functional/_bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
xdebug_disable();
1717
}
1818

19-
$RELATIVE_TESTS_MODULE_PATH = '/tests/functional/tests/';
19+
$RELATIVE_TESTS_MODULE_PATH = '/tests/functional/tests/MFTF';
2020

2121
defined('MAGENTO_BP') || define('MAGENTO_BP', PROJECT_ROOT);
2222
defined('TESTS_BP') || define('TESTS_BP', dirname(dirname(__DIR__)));

src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ private function aggregateTestModulePaths()
229229

230230
// Define the Module paths from default TESTS_MODULE_PATH
231231
$modulePath = defined('TESTS_MODULE_PATH') ? TESTS_MODULE_PATH : TESTS_BP;
232-
$modulePath = rtrim($modulePath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
232+
$modulePath = rtrim($modulePath, DIRECTORY_SEPARATOR);
233233

234234
// Define the Module paths from vendor modules
235235
$vendorCodePath = PROJECT_ROOT

0 commit comments

Comments
 (0)