Skip to content

Commit

Permalink
test: fix arguments order in assert.strictEqual
Browse files Browse the repository at this point in the history
PR-URL: #24612
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
tottokotkd authored and BethGriggs committed Feb 11, 2019
1 parent 6f4e30d commit 82d9ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-http-default-encoding.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ server.listen(0, function() {
});

process.on('exit', () => {
assert.strictEqual(expected, result);
assert.strictEqual(result, expected);
});

0 comments on commit 82d9ffc

Please sign in to comment.