Skip to content

Commit

Permalink
Merge branch '10.5' into 11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 28, 2024
2 parents 097d217 + 5ad4bcf commit e96bfa3
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Event/Value/TestSuite/TestSuiteBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,6 @@
*/
public static function from(FrameworkTestSuite $testSuite): TestSuite
{
$groups = [];

foreach ($testSuite->groupDetails() as $groupName => $tests) {
if (!isset($groups[$groupName])) {
$groups[$groupName] = [];
}

foreach ($tests as $test) {
$groups[$groupName][] = $test::class;
}
}

$tests = [];

self::process($testSuite, $tests);
Expand Down

0 comments on commit e96bfa3

Please sign in to comment.