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 b426ed2 commit 370023aCopy full SHA for 370023a
src/speedtest.rs
@@ -156,9 +156,9 @@ pub fn run_latency_test(
156
output_format: OutputFormat,
157
) -> (Vec<f64>, f64) {
158
let mut measurements: Vec<f64> = Vec::new();
159
- for i in 0..=nr_latency_tests {
+ for i in 0..nr_latency_tests {
160
if output_format == OutputFormat::StdOut {
161
- print_progress("latency test", i, nr_latency_tests);
+ print_progress("latency test", i + 1, nr_latency_tests);
162
}
163
let latency = test_latency(client);
164
measurements.push(latency);
0 commit comments