Skip to content

Commit

Permalink
[bench] More exact size display
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Nov 30, 2012
1 parent b81d9b7 commit 7bc1a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/websockets-throughput.js
Expand Up @@ -72,7 +72,7 @@ function runSet(set, callback) {
}

var mb = (set.size * set.count) / (1024 * 1024);
console.log(mb + ' MB');
console.log(set.size / (1024) + ' KB * ' + set.count + ' (' + mb + ' MB)');

Object.keys(results).forEach(function (key) {
var t = results[key],
Expand Down

0 comments on commit 7bc1a62

Please sign in to comment.