Skip to content

Commit

Permalink
test: fix assertions args order
Browse files Browse the repository at this point in the history
PR-URL: #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 MylesBorins committed Nov 29, 2018
1 parent 7b2e7aa commit 61cf1cf
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 61cf1cf

Please sign in to comment.