From b3a329a72cb890b86e0d697a1c0bc3f1528ac1ad Mon Sep 17 00:00:00 2001 From: Ji Lu Date: Fri, 18 Oct 2019 11:25:02 -0500 Subject: [PATCH] MQE-1831: Remove Deprecation warning from Module Resolver --- src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php b/src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php index 447516075..d776603d1 100644 --- a/src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php +++ b/src/Magento/FunctionalTestingFramework/Util/ModuleResolver.php @@ -372,6 +372,7 @@ private function globRelevantPaths($testPath, $pattern) } } + /* TODO uncomment this to show deprecation warning when we ready to fully deliver test packaging feature if (strpos($testPath, self::DEPRECATED_DEV_TESTS) !== false && !empty($modulePaths)) { $deprecatedPath = ltrim(self::DEPRECATED_DEV_TESTS, DIRECTORY_SEPARATOR); $suggestedPath = self::DEV_TESTS . DIRECTORY_SEPARATOR . 'Magento'; @@ -386,7 +387,7 @@ private function globRelevantPaths($testPath, $pattern) print ("\n$message\n\n"); } } - + */ return $modulePaths; }