diff options
author | Rich Trott <rtrott@gmail.com> | 2016-04-19 15:37:45 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2016-04-22 14:38:09 -0700 |
commit | a7335bd1f048f6592f609eec0c87c007e98d754c (patch) | |
tree | 1f888003dea7c3fb67366ac1a94f418eb7acb168 /test/parallel/test-child-process-spawnsync-maxbuf.js | |
parent | 5eb4ec090d70a848e2ae98bd526634bf9d1bf08c (diff) | |
download | node-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-child-process-spawnsync-maxbuf.js')
-rw-r--r-- | test/parallel/test-child-process-spawnsync-maxbuf.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-spawnsync-maxbuf.js b/test/parallel/test-child-process-spawnsync-maxbuf.js index 317c0fe0ba..87099737ec 100644 --- a/test/parallel/test-child-process-spawnsync-maxbuf.js +++ b/test/parallel/test-child-process-spawnsync-maxbuf.js @@ -24,4 +24,4 @@ assert.ok(ret.error, 'maxBuffer should error'); assert.strictEqual(ret.error.errno, 'ENOBUFS'); // We can have buffers larger than maxBuffer because underneath we alloc 64k // that matches our read sizes -assert.deepEqual(ret.stdout, msgOutBuf); +assert.deepStrictEqual(ret.stdout, msgOutBuf); |