Skip to content

Commit c7ba556

Browse files
kailashyogeshwar85BethGriggs
authored andcommitted
test: removed assert.strictEqual message
Backport-PR-URL: #22850 PR-URL: #20223 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 1edd7f6 commit c7ba556

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/parallel/test-http2-create-client-session.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ server.on('listening', common.mustCall(() => {
5555
const req = client.request();
5656

5757
req.on('response', common.mustCall(function(headers) {
58-
assert.strictEqual(headers[':status'], 200, 'status code is set');
59-
assert.strictEqual(headers['content-type'], 'text/html',
60-
'content type is set');
58+
assert.strictEqual(headers[':status'], 200);
59+
assert.strictEqual(headers['content-type'], 'text/html');
6160
assert(headers.date);
6261
}));
6362

0 commit comments

Comments
 (0)