Skip to content

Commit

Permalink
test: fix args order in process-getactiverequests
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
kopylash authored and Trott committed Nov 12, 2018
1 parent 9604856 commit 981701b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-process-getactiverequests.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ const fs = require('fs');
for (let i = 0; i < 12; i++)
fs.open(__filename, 'r', () => {});

assert.strictEqual(12, process._getActiveRequests().length);
assert.strictEqual(process._getActiveRequests().length, 12);

0 comments on commit 981701b

Please sign in to comment.