test: fix assertion argument order

PR-URL: https://github.com/nodejs/node/pull/23489
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
Carl Richmond 2018-10-12 10:03:58 -07:00 committed by Ruben Bridgewater
parent 039965085d
commit d5824f8552
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -47,8 +47,8 @@ server.on('listening', function() {
http.get({ port: this.address().port, path: '/one' }, function(res) {
// set-cookie headers are always return in an array.
// even if there is only one.
assert.deepStrictEqual(['A'], res.headers['set-cookie']);
assert.strictEqual('text/plain', res.headers['content-type']);
assert.deepStrictEqual(res.headers['set-cookie'], ['A']);
assert.strictEqual(res.headers['content-type'], 'text/plain');
res.on('data', function(chunk) {
console.log(chunk.toString());
@ -62,8 +62,8 @@ server.on('listening', function() {
// two set-cookie headers
http.get({ port: this.address().port, path: '/two' }, function(res) {
assert.deepStrictEqual(['A', 'B'], res.headers['set-cookie']);
assert.strictEqual('text/plain', res.headers['content-type']);
assert.deepStrictEqual(res.headers['set-cookie'], ['A', 'B']);
assert.strictEqual(res.headers['content-type'], 'text/plain');
res.on('data', function(chunk) {
console.log(chunk.toString());