Skip to content

Commit 907461c

Browse files
vchoubey08jasnell
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 1a43e53 commit 907461c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/parallel/test-memory-usage-emfile.js

+1-1
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)