Skip to content

Commit

Permalink
test: Fix benchmark test (#1222)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Nov 26, 2023
1 parent f2df43c commit 0af38b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/bench-test.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
$xml = FS::getFileContents($benchmarkResultPath);
$meanTimes = BenchResultReader::readMeanTimes($xml);

$parallelTime = $meanTimes['with compactors; no parallel processing'];
$noParallelTime = $meanTimes['with compactors; parallel processing'];
$parallelTime = $meanTimes['with compactors; parallel processing'];
$noParallelTime = $meanTimes['with compactors; no parallel processing'];

$formatMeanTime = static fn (float $mean) => number_format($mean).'µs';

Expand Down

0 comments on commit 0af38b1

Please sign in to comment.