summaryrefslogtreecommitdiff
path: root/test/sequential/test-regress-GH-1726.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-regress-GH-1726.js')
-rw-r--r--test/sequential/test-regress-GH-1726.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sequential/test-regress-GH-1726.js b/test/sequential/test-regress-GH-1726.js
index 0097ed913d..c464193b23 100644
--- a/test/sequential/test-regress-GH-1726.js
+++ b/test/sequential/test-regress-GH-1726.js
@@ -8,8 +8,8 @@ require('../common');
const assert = require('assert');
const ch = require('child_process');
-var gen = +(process.argv[2] || 0);
-var maxGen = 5;
+const gen = +(process.argv[2] || 0);
+const maxGen = 5;
if (gen === maxGen) {
@@ -17,7 +17,7 @@ if (gen === maxGen) {
return;
}
-var child = ch.spawn(process.execPath, [__filename, gen + 1], {
+const child = ch.spawn(process.execPath, [__filename, gen + 1], {
stdio: [ 'ignore', 'pipe', 'ignore' ]
});
assert.ok(!child.stdin);