Skip to content

Commit 59723d4

Browse files
SelvarajKaruppusamyrvagg
authored andcommitted
test: fix actual parameter order for 'assert.strictEqual'
PR-URL: #24428 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]>
1 parent 873dee9 commit 59723d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pummel/test-net-throttle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ server.listen(common.PORT, function() {
5858
console.log('pause');
5959
const x = chars_recved;
6060
setTimeout(function() {
61-
assert.strictEqual(x, chars_recved);
61+
assert.strictEqual(chars_recved, x);
6262
client.resume();
6363
console.log('resume');
6464
paused = false;

0 commit comments

Comments
 (0)