diff --git a/.github/actions/benchmarker/src/bench.rs b/.github/actions/benchmarker/src/bench.rs index c0d6470..2aa40c2 100644 --- a/.github/actions/benchmarker/src/bench.rs +++ b/.github/actions/benchmarker/src/bench.rs @@ -120,7 +120,7 @@ fn bench_single_cmd_getrusage(cmd: Vec) -> SingleBench { counters: BTreeMap::from_iter([( "user-time".to_owned(), BenchCounter { - value: user_time.as_secs_f64() * 1000.0, + value: user_time.as_millis() as f64, unit: "msec".to_owned(), }, )]),