We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4296837 commit ce7555dCopy full SHA for ce7555d
test/parallel/test-http-information-processing.js
@@ -38,7 +38,7 @@ server.listen(0, function() {
38
req.on('response', function(res) {
39
// Check that all 102 Processing received before full response received.
40
assert.strictEqual(countdown.remaining, 1);
41
- assert.strictEqual(200, res.statusCode,
+ assert.strictEqual(res.statusCode, 200,
42
`Final status code was ${res.statusCode}, not 200.`);
43
res.setEncoding('utf8');
44
res.on('data', function(chunk) { body += chunk; });
0 commit comments