Skip to content

Commit ce7555d

Browse files
ivansiederjasnell
authored andcommitted
test: strictEqual correct order for http-information-processing test
PR-URL: #23456 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
1 parent 4296837 commit ce7555d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-http-information-processing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ server.listen(0, function() {
3838
req.on('response', function(res) {
3939
// Check that all 102 Processing received before full response received.
4040
assert.strictEqual(countdown.remaining, 1);
41-
assert.strictEqual(200, res.statusCode,
41+
assert.strictEqual(res.statusCode, 200,
4242
`Final status code was ${res.statusCode}, not 200.`);
4343
res.setEncoding('utf8');
4444
res.on('data', function(chunk) { body += chunk; });

0 commit comments

Comments
 (0)