summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-syntax-error-handling.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-repl-syntax-error-handling.js')
-rw-r--r--test/parallel/test-repl-syntax-error-handling.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-repl-syntax-error-handling.js b/test/parallel/test-repl-syntax-error-handling.js
index 6a65d53a02..9014f9a02f 100644
--- a/test/parallel/test-repl-syntax-error-handling.js
+++ b/test/parallel/test-repl-syntax-error-handling.js
@@ -27,7 +27,7 @@ function parent() {
out += c;
});
child.stdout.on('end', function() {
- assert.equal(out, '10\n');
+ assert.strictEqual(out, '10\n');
console.log('ok - got expected output');
});