Skip to content

Commit 8f88891

Browse files
kopylashkiyomizumia
authored andcommitted
test: fix args order in process-getactiverequests
PR-URL: nodejs#24186 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 0da30f9 commit 8f88891

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)