aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-unescaped-path.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-unescaped-path.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-unescaped-path.js')
-rw-r--r--test/parallel/test-http-client-unescaped-path.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/parallel/test-http-client-unescaped-path.js b/test/parallel/test-http-client-unescaped-path.js
index f3c680919d..6d5a945dd5 100644
--- a/test/parallel/test-http-client-unescaped-path.js
+++ b/test/parallel/test-http-client-unescaped-path.js
@@ -21,17 +21,16 @@
'use strict';
const common = require('../common');
-const assert = require('assert');
const http = require('http');
for (let i = 0; i <= 32; i += 1) {
const path = `bad${String.fromCharCode(i)}path`;
- assert.throws(
+ common.expectsError(
() => http.get({ path }, common.mustNotCall()),
- common.expectsError({
+ {
code: 'ERR_UNESCAPED_CHARACTERS',
type: TypeError,
message: 'Request path contains unescaped characters'
- })
+ }
);
}