Skip to content

Commit d3db491

Browse files
committed
MQE-783: [SPIKE] Investigate allure reporting when tests run in multiple suites
- change suiteName to be of format <default>\<groupName>
1 parent df9dfda commit d3db491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Allure/Adapter/MagentoAllureAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function suiteBefore(SuiteEvent $suiteEvent)
4444

4545
if ($this->getGroup() != null) {
4646
$suite = $suiteEvent->getSuite();
47-
$suiteName = ($suite->getName()) . "-{$this->getGroup()}";
47+
$suiteName = ($suite->getName()) . "\\" . $this->getGroup();
4848

4949
call_user_func(\Closure::bind(
5050
function () use ($suite, $suiteName) {

0 commit comments

Comments
 (0)