summaryrefslogtreecommitdiff
path: root/test/parallel/test-util.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-19 15:37:45 -0700
committerRich Trott <rtrott@gmail.com>2016-04-22 14:38:09 -0700
commita7335bd1f048f6592f609eec0c87c007e98d754c (patch)
tree1f888003dea7c3fb67366ac1a94f418eb7acb168 /test/parallel/test-util.js
parent5eb4ec090d70a848e2ae98bd526634bf9d1bf08c (diff)
downloadnode-new-a7335bd1f048f6592f609eec0c87c007e98d754c.tar.gz
test,benchmark: use deepStrictEqual()
In preparation for a lint rule that will enforce assert.deepStrictEqual() over assert.deepEqual(), change tests and benchmarks accordingly. For tests and benchmarks that are testing or benchmarking assert.deepEqual() itself, apply a comment to ignore the upcoming rule. PR-URL: https://github.com/nodejs/node/pull/6213 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-util.js')
-rw-r--r--test/parallel/test-util.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/parallel/test-util.js b/test/parallel/test-util.js
index 28ad67f6ef..453148bc65 100644
--- a/test/parallel/test-util.js
+++ b/test/parallel/test-util.js
@@ -76,10 +76,10 @@ assert.equal(false, util.isBuffer('foo'));
assert.equal(true, util.isBuffer(Buffer.from('foo')));
// _extend
-assert.deepEqual(util._extend({a:1}), {a:1});
-assert.deepEqual(util._extend({a:1}, []), {a:1});
-assert.deepEqual(util._extend({a:1}, null), {a:1});
-assert.deepEqual(util._extend({a:1}, true), {a:1});
-assert.deepEqual(util._extend({a:1}, false), {a:1});
-assert.deepEqual(util._extend({a:1}, {b:2}), {a:1, b:2});
-assert.deepEqual(util._extend({a:1, b:2}, {b:3}), {a:1, b:3});
+assert.deepStrictEqual(util._extend({a:1}), {a:1});
+assert.deepStrictEqual(util._extend({a:1}, []), {a:1});
+assert.deepStrictEqual(util._extend({a:1}, null), {a:1});
+assert.deepStrictEqual(util._extend({a:1}, true), {a:1});
+assert.deepStrictEqual(util._extend({a:1}, false), {a:1});
+assert.deepStrictEqual(util._extend({a:1}, {b:2}), {a:1, b:2});
+assert.deepStrictEqual(util._extend({a:1, b:2}, {b:3}), {a:1, b:3});