diff options
author | Rich Trott <rtrott@gmail.com> | 2015-12-25 15:32:13 -0800 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2015-12-28 16:17:24 -0800 |
commit | abe8a344a5c00d25dd8a7b4a77085a2c29a5c0c6 (patch) | |
tree | 2f6a33d60eef6a3e4e2b9e95ee7279d16d51022c /test/parallel/test-http-client-pipe-end.js | |
parent | 5d6f558ea669507f880e0e50e12e8be50d115d56 (diff) | |
download | node-new-abe8a344a5c00d25dd8a7b4a77085a2c29a5c0c6.tar.gz |
test: remove unused variables form http tests
The http tests seem especially prone to including unused variables.
This change removes them.
PR-URL: https://github.com/nodejs/node/pull/4422
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'test/parallel/test-http-client-pipe-end.js')
-rw-r--r-- | test/parallel/test-http-client-pipe-end.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/parallel/test-http-client-pipe-end.js b/test/parallel/test-http-client-pipe-end.js index efe2414193..715f8ccf79 100644 --- a/test/parallel/test-http-client-pipe-end.js +++ b/test/parallel/test-http-client-pipe-end.js @@ -2,7 +2,6 @@ // see https://github.com/joyent/node/issues/3257 var common = require('../common'); -var assert = require('assert'); var http = require('http'); var server = http.createServer(function(req, res) { |