diff --git a/test/http2.js b/test/http2.js index d3bc4505ede..7be79b021d1 100644 --- a/test/http2.js +++ b/test/http2.js @@ -147,13 +147,11 @@ test('Should support H2 connection(POST Buffer)', async t => { const sendBody = 'hello!' const body = [] - console.log(`before request ${sendBody}`) const response = await client.request({ path: '/', method: 'POST', body: sendBody }) - console.log(`after request ${sendBody}`) response.body.on('data', chunk => { body.push(chunk)