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 <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
  • Loading branch information
milsosa authored and BridgeAR committed Oct 15, 2018
1 parent dcee873 commit 685a8c5
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 685a8c5

Please sign in to comment.