summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-info-headers-errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http2-info-headers-errors.js')
-rw-r--r--test/parallel/test-http2-info-headers-errors.js22
1 files changed, 4 insertions, 18 deletions
diff --git a/test/parallel/test-http2-info-headers-errors.js b/test/parallel/test-http2-info-headers-errors.js
index 5e1c2d1fad..b671bece4f 100644
--- a/test/parallel/test-http2-info-headers-errors.js
+++ b/test/parallel/test-http2-info-headers-errors.js
@@ -6,29 +6,15 @@ if (!common.hasCrypto)
const http2 = require('http2');
const {
constants,
- Http2Session,
+ Http2Stream,
nghttp2ErrorString
} = process.binding('http2');
// tests error handling within additionalHeaders
-// - NGHTTP2_ERR_NOMEM (should emit session error)
// - every other NGHTTP2 error from binding (should emit stream error)
-const specificTestKeys = [
- 'NGHTTP2_ERR_NOMEM'
-];
-
-const specificTests = [
- {
- ngError: constants.NGHTTP2_ERR_NOMEM,
- error: {
- code: 'ERR_OUTOFMEMORY',
- type: Error,
- message: 'Out of memory'
- },
- type: 'session'
- }
-];
+const specificTestKeys = [];
+const specificTests = [];
const genericTests = Object.getOwnPropertyNames(constants)
.filter((key) => (
@@ -50,7 +36,7 @@ const tests = specificTests.concat(genericTests);
let currentError;
// mock sendHeaders because we only care about testing error handling
-Http2Session.prototype.sendHeaders = () => currentError.ngError;
+Http2Stream.prototype.info = () => currentError.ngError;
const server = http2.createServer();
server.on('stream', common.mustCall((stream, headers) => {