Skip to content

Commit

Permalink
test: improve test-cluster-net-listen.js
Browse files Browse the repository at this point in the history
convert var to const
  • Loading branch information
Rico Cai authored and Trott committed Dec 23, 2016
1 parent 70d752e commit 3c76b2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/parallel/test-cluster-net-listen.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict';
var common = require('../common');
var assert = require('assert');
var cluster = require('cluster');
var net = require('net');
const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
const net = require('net');

if (cluster.isMaster) {
// ensure that the worker exits peacefully
Expand Down

0 comments on commit 3c76b2c

Please sign in to comment.