Skip to content

Commit

Permalink
test: fix actual parameter order for 'assert.strictEqual'
Browse files Browse the repository at this point in the history
PR-URL: #24428
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
  • Loading branch information
SelvarajKaruppusamy authored and rvagg committed Nov 28, 2018
1 parent 873dee9 commit 59723d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/pummel/test-net-throttle.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ server.listen(common.PORT, function() {
console.log('pause');
const x = chars_recved;
setTimeout(function() {
assert.strictEqual(x, chars_recved);
assert.strictEqual(chars_recved, x);
client.resume();
console.log('resume');
paused = false;
Expand Down

0 comments on commit 59723d4

Please sign in to comment.