summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-worker-isconnected.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2015-12-23 01:33:56 -0800
committerRich Trott <rtrott@gmail.com>2015-12-25 13:16:26 -0800
commit3311267f7526e4830b49281783395073b6be9d04 (patch)
tree109e14fc21c268cdb4b80c512ec4d4acf5eae573 /test/parallel/test-cluster-worker-isconnected.js
parentfdeb862f2bc41d6d26e2fae8c588c4fc698e0cae (diff)
downloadandroid-node-v8-3311267f7526e4830b49281783395073b6be9d04.tar.gz
android-node-v8-3311267f7526e4830b49281783395073b6be9d04.tar.bz2
android-node-v8-3311267f7526e4830b49281783395073b6be9d04.zip
test: remove unused `util` imports
A number of tests in `test/parallel` were importing the `util` module via `require()` but not using `util` for anything. This removes those `require()` statements. PR-URL: https://github.com/nodejs/node/pull/4397 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
Diffstat (limited to 'test/parallel/test-cluster-worker-isconnected.js')
-rw-r--r--test/parallel/test-cluster-worker-isconnected.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/parallel/test-cluster-worker-isconnected.js b/test/parallel/test-cluster-worker-isconnected.js
index eb3c5892bb..985d15ce64 100644
--- a/test/parallel/test-cluster-worker-isconnected.js
+++ b/test/parallel/test-cluster-worker-isconnected.js
@@ -2,7 +2,6 @@
require('../common');
var cluster = require('cluster');
var assert = require('assert');
-var util = require('util');
if (cluster.isMaster) {
var worker = cluster.fork();