summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-cpuUsage.js
diff options
context:
space:
mode:
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 0c553c576a..062dac31cf 100644
--- a/test/parallel/test-process-cpuUsage.js
+++ b/test/parallel/test-process-cpuUsage.js
@@ -87,7 +87,7 @@ assert.throws(() => {
// 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));