Skip to content

Commit

Permalink
http2: fix js linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarak committed Aug 5, 2021
1 parent 956902d commit 701ef63
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/parallel/test-http2-cancel-while-client-reading.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const http2 = require('http2');
const key = fixtures.readKey('agent1-key.pem', 'binary');
const cert = fixtures.readKey('agent1-cert.pem', 'binary');

const server = http2.createSecureServer({key, cert});
const server = http2.createSecureServer({ key, cert });

let client_stream;

Expand All @@ -24,14 +24,13 @@ server.on('stream', common.mustCall(function(stream) {

server.listen(0, function() {
const client = http2.connect(`https://localhost:${server.address().port}`,
{rejectUnauthorized: false}
);
client_stream = client.request({ ':method': 'POST'});
{ rejectUnauthorized: false }
);
client_stream = client.request({ ':method': 'POST' });
client_stream.on('close', common.mustCall(() => {
client.close();
server.close();
}));
client_stream.resume();
client_stream.write(Buffer.alloc(1024 * 1024));
});

0 comments on commit 701ef63

Please sign in to comment.