test: reversed 1st and 2nd arguments for assert.strictEqual()

PR-URL: https://github.com/nodejs/node/pull/23617
Reviewed-By: Denys Otrishko <shishugi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Hitesh Kanwathirtha <digitalinfinity@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
This commit is contained in:
vchoubey08 2018-10-12 11:43:02 -07:00 committed by Ruben Bridgewater
parent 955148ab00
commit 4e82835596
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -10,4 +10,4 @@ while (files.length < 256)
files.push(fs.openSync(__filename, 'r'));
const r = process.memoryUsage();
assert.strictEqual(true, r.rss > 0);
assert.strictEqual(r.rss > 0, true);