Skip to content

Commit 51643c2

Browse files
kopylashcodebytere
authored andcommitted
test: fix args order in process-getactiverequests
PR-URL: #24186 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 454ede2 commit 51643c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-process-getactiverequests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ const fs = require('fs');
77
for (let i = 0; i < 12; i++)
88
fs.open(__filename, 'r', () => {});
99

10-
assert.strictEqual(12, process._getActiveRequests().length);
10+
assert.strictEqual(process._getActiveRequests().length, 12);

0 commit comments

Comments
 (0)