Skip to content

Commit

Permalink
test: fix assertions args order
Browse files Browse the repository at this point in the history
PR-URL: nodejs#23608
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Sakthipriyan Vairamani <[email protected]>
  • Loading branch information
milsosa authored and BridgeAR committed Oct 15, 2018
1 parent a039c86 commit 31cb297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-http-chunk-problem.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ function executeRequest(cb) {
'shasum' ].join(' '),
(err, stdout, stderr) => {
assert.ifError(err);
assert.strictEqual('8c206a1a87599f532ce68675536f0b1546900d7a',
stdout.slice(0, 40));
assert.strictEqual(stdout.slice(0, 40),
'8c206a1a87599f532ce68675536f0b1546900d7a');
cb();
}
);
Expand Down

0 comments on commit 31cb297

Please sign in to comment.