benchmark: add a constant declaration for `net`

Constant declaration for `net` is omitted in `idle_server.js`
Add a constant declaration for constant `net`

PR-URL: https://github.com/nodejs/node/pull/3950
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
pull/3950/merge
Minwoo Jung 2015-11-21 15:52:53 +09:00 committed by JungMinu
parent 9429685d48
commit 4126441013
1 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,13 @@
net = require('net');
connections = 0;
'use strict';
const net = require('net');
var connections = 0;
var errors = 0;
server = net.Server(function (socket) {
var server = net.Server(function (socket) {
socket.on('error', function () {
errors++;
errors++;
});
});
@ -28,4 +29,3 @@ setInterval(function () {
console.log("SERVER %d errors: %d", process.pid, errors);
}
}, 1000);