summaryrefslogtreecommitdiff
path: root/test/sequential/test-util-debug.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-util-debug.js')
-rw-r--r--test/sequential/test-util-debug.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sequential/test-util-debug.js b/test/sequential/test-util-debug.js
index 1159278efa..c0e15c1436 100644
--- a/test/sequential/test-util-debug.js
+++ b/test/sequential/test-util-debug.js
@@ -1,6 +1,6 @@
'use strict';
const common = require('../common');
-var assert = require('assert');
+const assert = require('assert');
if (process.argv[2] === 'child')
child();
@@ -24,7 +24,7 @@ function test(environ, shouldWrite) {
}
var expectOut = 'ok\n';
- var spawn = require('child_process').spawn;
+ const spawn = require('child_process').spawn;
var child = spawn(process.execPath, [__filename, 'child'], {
env: Object.assign(process.env, { NODE_DEBUG: environ })
});
@@ -53,7 +53,7 @@ function test(environ, shouldWrite) {
function child() {
- var util = require('util');
+ const util = require('util');
var debug = util.debuglog('tud');
debug('this', { is: 'a' }, /debugging/);
debug('number=%d string=%s obj=%j', 1234, 'asdf', { foo: 'bar' });