Skip to content

Commit

Permalink
Make naming consistent with tracer reporting (#2580)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomartinezbernardo committed Mar 20, 2024
1 parent 4c0dcf6 commit 91e74a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Common/IntegrationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ public static function ddSetUpBeforeClass()
$exts = get_loaded_extensions(false);
$csv = '';
foreach ($exts as $ext) {
$csv = $csv . "ext/" . $ext . ";" . phpversion($ext) . "\n";
$csv = $csv . "ext-" . $ext . ";" . phpversion($ext) . "\n";
}

$zendExts = get_loaded_extensions(true);
foreach ($zendExts as $ext) {
$csv = $csv . "ext/" . $ext . ";" . phpversion($ext) . "\n";
$csv = $csv . "ext-" . $ext . ";" . phpversion($ext) . "\n";
}

$artifactsDir = "/tmp/artifacts";
Expand Down

0 comments on commit 91e74a8

Please sign in to comment.