From 3448e8e5229de09046ddf553befe2839adc0107b Mon Sep 17 00:00:00 2001 From: Neeraj Sharma Date: Thu, 1 Dec 2016 10:49:52 -0600 Subject: [PATCH] test: use strictEqual in test-cwd-enoent-repl.js In file /test/parallel/test-cwd-enoent-repl.js at line: 26:3 and 27:3 assert.equal was used. This commit changes use of assert.equal to assert.strictEqual. PR-URL: https://github.com/nodejs/node/pull/9952 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- test/parallel/test-cwd-enoent-repl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-cwd-enoent-repl.js b/test/parallel/test-cwd-enoent-repl.js index 2782ec4394ea06..1d03bd3e9112c1 100644 --- a/test/parallel/test-cwd-enoent-repl.js +++ b/test/parallel/test-cwd-enoent-repl.js @@ -23,6 +23,6 @@ proc.stdin.write('require("path");\n'); proc.stdin.write('process.exit(42);\n'); proc.once('exit', common.mustCall(function(exitCode, signalCode) { - assert.equal(exitCode, 42); - assert.equal(signalCode, null); + assert.strictEqual(exitCode, 42); + assert.strictEqual(signalCode, null); }));