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.
1 parent 42eb997 commit 33be6b9Copy full SHA for 33be6b9
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