Skip to content

Commit b701a7e

Browse files
vchoubey08addaleax
authored andcommitted
test: reversed 1st and 2nd arguments for assert.strictEqual()
PR-URL: #23617 Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Hitesh Kanwathirtha <[email protected]> Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent 39b4f71 commit b701a7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-memory-usage-emfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ while (files.length < 256)
1010
files.push(fs.openSync(__filename, 'r'));
1111

1212
const r = process.memoryUsage();
13-
assert.strictEqual(true, r.rss > 0);
13+
assert.strictEqual(r.rss > 0, true);

0 commit comments

Comments
 (0)