Skip to content

Commit 8be3af7

Browse files
committed
test: fix assertions args order in test-http-chunk-problem.js
1 parent bcbb937 commit 8be3af7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-http-chunk-problem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ function executeRequest(cb) {
5353
'shasum' ].join(' '),
5454
(err, stdout, stderr) => {
5555
assert.ifError(err);
56-
assert.strictEqual('8c206a1a87599f532ce68675536f0b1546900d7a',
57-
stdout.slice(0, 40));
56+
assert.strictEqual(stdout.slice(0, 40),
57+
'8c206a1a87599f532ce68675536f0b1546900d7a');
5858
cb();
5959
}
6060
);

0 commit comments

Comments
 (0)