summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-cpuUsage.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2016-12-30 10:09:13 -0500
committercjihrig <cjihrig@gmail.com>2017-01-06 14:08:47 -0500
commite5499b32cfcde144ee41500356d45d990cd9df0e (patch)
tree5241a5db3f80fee2d6a8e2b255f49157d5733d56 /test/parallel/test-process-cpuUsage.js
parent75ebd19d8dff5c65f94f7cf0a847b63d952ca864 (diff)
downloadandroid-node-v8-e5499b32cfcde144ee41500356d45d990cd9df0e.tar.gz
android-node-v8-e5499b32cfcde144ee41500356d45d990cd9df0e.tar.bz2
android-node-v8-e5499b32cfcde144ee41500356d45d990cd9df0e.zip
test: s/assert.notEqual()/assert.notStrictEqual()/
PR-URL: https://github.com/nodejs/node/pull/10541 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Diffstat (limited to 'test/parallel/test-process-cpuUsage.js')
-rw-r--r--test/parallel/test-process-cpuUsage.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-process-cpuUsage.js b/test/parallel/test-process-cpuUsage.js
index 92dc719185..0e8443f09a 100644
--- a/test/parallel/test-process-cpuUsage.js
+++ b/test/parallel/test-process-cpuUsage.js
@@ -57,7 +57,7 @@ assert.throws(function() {
// Ensure that the return value is the expected shape.
function validateResult(result) {
- assert.notEqual(result, null);
+ assert.notStrictEqual(result, null);
assert(Number.isFinite(result.user));
assert(Number.isFinite(result.system));