summaryrefslogtreecommitdiff
path: root/test/parallel/test-next-tick-errors.js
diff options
context:
space:
mode:
authorMichaƫl Zasso <mic.besace@gmail.com>2016-01-13 21:42:45 +0100
committerRoman Reiss <me@silverwind.io>2016-01-13 23:16:17 +0100
commitd1aabd626428cec65e5f54c04d9e3446d1e4d3b7 (patch)
tree9a4d4de19204b8b50d496dd6046a897f107bcf4d /test/parallel/test-next-tick-errors.js
parentec8e0ae697d96c417bda0bbe5be9712cf5923b1f (diff)
downloadnode-new-d1aabd626428cec65e5f54c04d9e3446d1e4d3b7.tar.gz
test: fix style issues after eslint update
Replace var keyword with const or let. PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/parallel/test-next-tick-errors.js')
-rw-r--r--test/parallel/test-next-tick-errors.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-next-tick-errors.js b/test/parallel/test-next-tick-errors.js
index 6b854e8237..074bdc0f9f 100644
--- a/test/parallel/test-next-tick-errors.js
+++ b/test/parallel/test-next-tick-errors.js
@@ -2,8 +2,8 @@
require('../common');
var assert = require('assert');
-var order = [],
- exceptionHandled = false;
+const order = [];
+let exceptionHandled = false;
// This nextTick function will throw an error. It should only be called once.
// When it throws an error, it should still get removed from the queue.