Skip to content

Commit 7a483b5

Browse files
Make naming consistent with tracer reporting
1 parent 4c0dcf6 commit 7a483b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Common/IntegrationTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public static function ddSetUpBeforeClass()
2323
$exts = get_loaded_extensions(false);
2424
$csv = '';
2525
foreach ($exts as $ext) {
26-
$csv = $csv . "ext/" . $ext . ";" . phpversion($ext) . "\n";
26+
$csv = $csv . "ext-" . $ext . ";" . phpversion($ext) . "\n";
2727
}
2828

2929
$zendExts = get_loaded_extensions(true);
3030
foreach ($zendExts as $ext) {
31-
$csv = $csv . "ext/" . $ext . ";" . phpversion($ext) . "\n";
31+
$csv = $csv . "ext-" . $ext . ";" . phpversion($ext) . "\n";
3232
}
3333

3434
$artifactsDir = "/tmp/artifacts";

0 commit comments

Comments
 (0)