aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-hostname-typechecking.js
diff options
context:
space:
mode:
authorMithun Sasidharan <mithunsasidharan89@gmail.com>2017-12-06 21:08:06 +0530
committerAnatoli Papirovski <apapirovski@mac.com>2017-12-08 13:37:33 -0500
commitacd427713422138a92f74a4c3c2a1f6d8ecf9778 (patch)
tree005ed9f2b3382df5bc2cb4e4e4af6164815c4c4d /test/parallel/test-http-hostname-typechecking.js
parent20a8e83e44a6555a40c9d5f367a9a7be8fed0374 (diff)
downloadandroid-node-v8-acd427713422138a92f74a4c3c2a1f6d8ecf9778.tar.gz
android-node-v8-acd427713422138a92f74a4c3c2a1f6d8ecf9778.tar.bz2
android-node-v8-acd427713422138a92f74a4c3c2a1f6d8ecf9778.zip
test: replace assert.throws w/ common.expectsError
PR-URL: https://github.com/nodejs/node/pull/17497 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'test/parallel/test-http-hostname-typechecking.js')
-rw-r--r--test/parallel/test-http-hostname-typechecking.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/parallel/test-http-hostname-typechecking.js b/test/parallel/test-http-hostname-typechecking.js
index dbb98b7ae1..12fe72005a 100644
--- a/test/parallel/test-http-hostname-typechecking.js
+++ b/test/parallel/test-http-hostname-typechecking.js
@@ -9,26 +9,26 @@ const http = require('http');
const vals = [{}, [], NaN, Infinity, -Infinity, true, false, 1, 0, new Date()];
vals.forEach((v) => {
- assert.throws(
+ common.expectsError(
() => http.request({ hostname: v }),
- common.expectsError({
+ {
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "options.hostname" property must be one of ' +
'type string, undefined, or null. ' +
`Received type ${typeof v}`
- })
+ }
);
- assert.throws(
+ common.expectsError(
() => http.request({ host: v }),
- common.expectsError({
+ {
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "options.host" property must be one of ' +
'type string, undefined, or null. ' +
`Received type ${typeof v}`
- })
+ }
);
});