Skip to content

Commit 6c918a9

Browse files
committed
fix bug in log merge
1 parent 4009f19 commit 6c918a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpunitMerger/Command/LogCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private function addTestSuites(\DOMElement $parent, array $testSuites)
8282
foreach ($testSuites as $testSuite) {
8383
if (empty($testSuite['@attributes']['name'])) {
8484
if (!empty($testSuite['testsuite'])) {
85-
$this->addTestSuites($parent, $testSuite['testsuite']);
85+
$this->addTestSuites($parent, $testSuite);
8686
}
8787
continue;
8888
}

0 commit comments

Comments
 (0)