We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42eb997 + 33be6b9 commit 6e9d4e0Copy full SHA for 6e9d4e0
src/SeqCli/Cli/Commands/Bench/QueryBenchRunResults.cs
@@ -47,9 +47,9 @@ private double MeanRelativeStandardDeviationPercentage()
47
return _collectedTimings.Average(c => c.RelativeStandardDeviationElapsed) * 100;
48
}
49
50
- private int FinalEventCount()
+ private long FinalEventCount()
51
{
52
var benchCase = _collectedTimings.Single(c => c.Id == FINAL_COUNT_CASE.Id);
53
- return Convert.ToInt32(benchCase.LastResult);
+ return Convert.ToInt64(benchCase.LastResult);
54
55
0 commit comments