summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-check-http-token.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-client-check-http-token.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-client-check-http-token.js')
-rw-r--r--test/parallel/test-http-client-check-http-token.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/parallel/test-http-client-check-http-token.js b/test/parallel/test-http-client-check-http-token.js
index 7a0c894504..828d7fa79a 100644
--- a/test/parallel/test-http-client-check-http-token.js
+++ b/test/parallel/test-http-client-check-http-token.js
@@ -1,6 +1,5 @@
'use strict';
const common = require('../common');
-const assert = require('assert');
const http = require('http');
const Countdown = require('../common/countdown');
@@ -18,14 +17,14 @@ const server = http.createServer(common.mustCall((req, res) => {
server.listen(0, common.mustCall(() => {
expectedFails.forEach((method) => {
- assert.throws(() => {
+ common.expectsError(() => {
http.request({ method, path: '/' }, common.mustNotCall());
- }, common.expectsError({
+ }, {
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "method" argument must be of type string. ' +
`Received type ${typeof method}`
- }));
+ });
});
expectedSuccesses.forEach((method) => {