Skip to content

Commit b7aa312

Browse files
tottokotkdrvagg
authored andcommitted
test: fix arguments order in assert.strictEqual
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>
1 parent 955a8a7 commit b7aa312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-http-default-encoding.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ server.listen(0, function() {
5454
});
5555

5656
process.on('exit', () => {
57-
assert.strictEqual(expected, result);
57+
assert.strictEqual(result, expected);
5858
});

0 commit comments

Comments
 (0)