Skip to content

Commit 82d9ffc

Browse files
tottokotkdBethGriggs
authored andcommitted
test: fix arguments order in assert.strictEqual
PR-URL: #24612 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Shingo Inoue <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 6f4e30d commit 82d9ffc

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)