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 cc77789 commit c98dd27Copy full SHA for c98dd27
benchmark/lib/benchmark.dart
@@ -33,7 +33,7 @@ class Benchmark {
33
print('$name(iterations): ' +
34
Emitter._format(iterations.toDouble(), decimalPoints: 0));
35
print('$name(count): ' +
36
- Emitter._format(iterations / coefficient));
+ Emitter._format(iterations / coefficient, decimalPoints: 0));
37
// Measure the total time of the test - if it's too high, you should
38
// decrease the number of iterations. Expected time is between 2 and 3 sec.
39
watch.start();
0 commit comments