Skip to content

Commit

Permalink
gh-47 bench fix result unit
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknow0 committed Aug 18, 2024
1 parent 8e47336 commit 9e5c059
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class ProcessResult {
private static final CSVFormat JTL = CSVFormat.newFormat(',').builder().setHeader().setSkipHeaderRecord(true).setQuote('"').build();
private static final CSVFormat H2 = CSVFormat.newFormat('\t');

private static final double ΜICRO = 10000.;
private static final double MILLI = 1000000.;
private static final double MILLI = 1000.;
private static final double ΜICRO = 1000000.;

private final String[] servers;
private final Map<String, Map<String, Result>> results = new HashMap<>();
Expand Down

0 comments on commit 9e5c059

Please sign in to comment.