Skip to content

Commit

Permalink
test: fixes that do not affect performance
Browse files Browse the repository at this point in the history
PR-URL: #9011
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
larissayvette authored and jasnell committed Oct 12, 2016
1 parent 89643b6 commit 1bb1b3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-debugger-pid.js
Expand Up @@ -29,8 +29,8 @@ interfacer.on('line', function(line) {
switch (++lineCount) {
case 1:
line = line.replace(/^(debug> *)+/, '');
var msg = 'There was an internal error in Node\'s debugger. ' +
'Please report this bug.';
const msg = 'There was an internal error in Node\'s debugger. ' +
'Please report this bug.';
expected = `(node:${pid}) ${msg}`;
break;

Expand All @@ -50,5 +50,5 @@ interfacer.on('line', function(line) {
});

interfacer.on('exit', function(code, signal) {
assert.ok(code == 1, 'Got unexpected code: ' + code);
assert.strictEqual(code, 1, `Got unexpected code: ${code}`);
});

0 comments on commit 1bb1b3a

Please sign in to comment.