Skip to content

Commit 6e2dc63

Browse files
[ACQE-4318] Debugging testgroupmembership file generation
1 parent 1f9cd2a commit 6e2dc63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Magento/FunctionalTestingFramework/Console/GenerateTestsCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
231231
$testManifest->createTestGroups($configNumber);
232232
}
233233

234-
SuiteGenerator::getInstance()->generateAllSuites($testManifest);
235-
236234
$testManifest->generate();
235+
236+
SuiteGenerator::getInstance()->generateAllSuites($testManifest);
237237
} catch (\Exception $e) {
238238
if (!empty(GenerationErrorHandler::getInstance()->getAllErrors())) {
239239
GenerationErrorHandler::getInstance()->printErrorSummary();

src/Magento/FunctionalTestingFramework/Suite/SuiteGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public function generateTestgroupmembership($testManifest)
175175
if (is_dir($path)) {
176176
$groupFiles = glob("$path/group*.txt");
177177
echo "Group files-> \n";
178-
print_r($groupFiles);
178+
print_r($groupFiles);
179179
if ($groupFiles === false) {
180180
throw new RuntimeException("glob(): error with '$path'");
181181
}

0 commit comments

Comments
 (0)