diff --git a/binding/javascript/tests/bench.app.js b/binding/javascript/tests/bench.app.js index 942b9db..913aa91 100644 --- a/binding/javascript/tests/bench.app.js +++ b/binding/javascript/tests/bench.app.js @@ -117,7 +117,7 @@ const main = () => { } const diff = process.hrtime(st); - totalMicroSecs += (diff[0] * 1_000_1000 + (diff[1] / 1e6)); + totalMicroSecs += (diff[0] * 1_000_1000 + diff[1] / 1e6); }).on('error', (err) => { console.log(err); process.exit(1);