test: remove message from strictEqual assertions
When an AssertionError happens, the value of headers['set-cookie'] is not reported. That information is useful for debugging. Hence removed the value passed as the message in deepStrictEqual assertions of test/parallel/test-http2-cookies.js PR-URL: https://github.com/nodejs/node/pull/20174 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
parent
d96075c4b6
commit
2a88f02f2f
@ -48,8 +48,7 @@ server.on('listening', common.mustCall(() => {
|
|||||||
|
|
||||||
req.on('response', common.mustCall((headers) => {
|
req.on('response', common.mustCall((headers) => {
|
||||||
assert(Array.isArray(headers['set-cookie']));
|
assert(Array.isArray(headers['set-cookie']));
|
||||||
assert.deepStrictEqual(headers['set-cookie'], setCookie,
|
assert.deepStrictEqual(headers['set-cookie'], setCookie);
|
||||||
'set-cookie header does not match');
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
req.on('end', common.mustCall(() => {
|
req.on('end', common.mustCall(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user