summaryrefslogtreecommitdiff
path: root/test/timers
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/timers
parenta497bb5d09f79f4593d545774c9262896d3bbcf2 (diff)
downloadnode-new-bc39d6a3a61e9217839f2cecf0aab8a2f2a96077.tar.gz
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/timers')
-rw-r--r--test/timers/test-timers-reliability.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/timers/test-timers-reliability.js b/test/timers/test-timers-reliability.js
index 966b82fd62..76aa6ea31a 100644
--- a/test/timers/test-timers-reliability.js
+++ b/test/timers/test-timers-reliability.js
@@ -44,7 +44,7 @@ monoTimer.ontimeout = function() {
monoTimer.start(300, 0);
-var timer = setTimeout(function() {
+setTimeout(function() {
timerFired = true;
}, 200);