aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-agent-error-on-idle.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2015-12-26 22:08:08 -0800
committerJames M Snell <jasnell@gmail.com>2016-01-05 08:59:58 -0800
commitbc39d6a3a61e9217839f2cecf0aab8a2f2a96077 (patch)
treee277759be44cc92f20ae4c6fbd764efa5918101d /test/parallel/test-http-agent-error-on-idle.js
parenta497bb5d09f79f4593d545774c9262896d3bbcf2 (diff)
downloadandroid-node-v8-bc39d6a3a61e9217839f2cecf0aab8a2f2a96077.tar.gz
android-node-v8-bc39d6a3a61e9217839f2cecf0aab8a2f2a96077.tar.bz2
android-node-v8-bc39d6a3a61e9217839f2cecf0aab8a2f2a96077.zip
test: remove unused vars
Remove unused vars in tests PR-URL: https://github.com/nodejs/node/pull/4536 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-http-agent-error-on-idle.js')
-rw-r--r--test/parallel/test-http-agent-error-on-idle.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/parallel/test-http-agent-error-on-idle.js b/test/parallel/test-http-agent-error-on-idle.js
index b6e50f930c..e3388ee0dc 100644
--- a/test/parallel/test-http-agent-error-on-idle.js
+++ b/test/parallel/test-http-agent-error-on-idle.js
@@ -21,7 +21,6 @@ function get(callback) {
return http.get(requestParams, callback);
}
-var destroy_queue = {};
var server = http.createServer(function(req, res) {
res.end('hello world');
});