aboutsummaryrefslogtreecommitdiff
path: root/test/sequential/test-stream2-fs.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/sequential/test-stream2-fs.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/sequential/test-stream2-fs.js')
-rw-r--r--test/sequential/test-stream2-fs.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/sequential/test-stream2-fs.js b/test/sequential/test-stream2-fs.js
index 96ab97174b..e775dd7c0a 100644
--- a/test/sequential/test-stream2-fs.js
+++ b/test/sequential/test-stream2-fs.js
@@ -1,6 +1,5 @@
'use strict';
var common = require('../common');
-var R = require('_stream_readable');
var assert = require('assert');
var fs = require('fs');
@@ -41,7 +40,6 @@ var w = new TestWriter();
w.on('results', function(res) {
console.error(res, w.length);
assert.equal(w.length, size);
- var l = 0;
assert.deepEqual(res.map(function(c) {
return c.length;
}), expectLengths);