summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-server-shutdown-options-errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http2-server-shutdown-options-errors.js')
-rw-r--r--test/parallel/test-http2-server-shutdown-options-errors.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/parallel/test-http2-server-shutdown-options-errors.js b/test/parallel/test-http2-server-shutdown-options-errors.js
index 95849411a2..9dde6660ea 100644
--- a/test/parallel/test-http2-server-shutdown-options-errors.js
+++ b/test/parallel/test-http2-server-shutdown-options-errors.js
@@ -55,13 +55,7 @@ server.listen(
0,
common.mustCall(() => {
const client = http2.connect(`http://localhost:${server.address().port}`);
- // On certain operating systems, an ECONNRESET may occur. We do not need
- // to test for it here. Do not make this a mustCall
- client.on('error', () => {});
const req = client.request();
- // On certain operating systems, an ECONNRESET may occur. We do not need
- // to test for it here. Do not make this a mustCall
- req.on('error', () => {});
req.resume();
req.on('close', common.mustCall(() => {
client.close();