diff --git a/benchmarks/WasmJSInterop/dart/WasmJSInterop.dart b/benchmarks/WasmJSInterop/dart/WasmJSInterop.dart index 201a63a6e05..03d30ee4a07 100644 --- a/benchmarks/WasmJSInterop/dart/WasmJSInterop.dart +++ b/benchmarks/WasmJSInterop/dart/WasmJSInterop.dart @@ -341,6 +341,6 @@ void main() { } /// Reports in Golem-specific format. -void report(String name, double nsPerCall) { - print('$name(RunTimeRaw): $nsPerCall ns.'); +void report(String name, double usPerCall) { + print('$name(RunTimeRaw): ${usPerCall * 1000} ns.'); }