summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-client-request-options-errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http2-client-request-options-errors.js')
-rw-r--r--test/parallel/test-http2-client-request-options-errors.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/parallel/test-http2-client-request-options-errors.js b/test/parallel/test-http2-client-request-options-errors.js
index 5d3fc0ab5a..4b146a1bc8 100644
--- a/test/parallel/test-http2-client-request-options-errors.js
+++ b/test/parallel/test-http2-client-request-options-errors.js
@@ -3,7 +3,6 @@
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
-const assert = require('assert');
const http2 = require('http2');
// Check if correct errors are emitted when wrong type of data is passed
@@ -40,19 +39,19 @@ server.listen(0, common.mustCall(() => {
return;
}
- assert.throws(
+ common.expectsError(
() => client.request({
':method': 'CONNECT',
':authority': `localhost:${port}`
}, {
[option]: types[type]
}),
- common.expectsError({
+ {
type: TypeError,
code: 'ERR_INVALID_OPT_VALUE',
message: `The value "${String(types[type])}" is invalid ` +
`for option "${option}"`
- })
+ }
);
});
});