summaryrefslogtreecommitdiff
path: root/test/parallel/test-file-write-stream3.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-file-write-stream3.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-file-write-stream3.js')
-rw-r--r--test/parallel/test-file-write-stream3.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/parallel/test-file-write-stream3.js b/test/parallel/test-file-write-stream3.js
index b6f0b84318..ca43239652 100644
--- a/test/parallel/test-file-write-stream3.js
+++ b/test/parallel/test-file-write-stream3.js
@@ -3,8 +3,7 @@ var common = require('../common');
var assert = require('assert');
var path = require('path'),
- fs = require('fs'),
- util = require('util');
+ fs = require('fs');
var filepath = path.join(common.tmpDir, 'write_pos.txt');