summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-invalid-path-chars.js
diff options
context:
space:
mode:
authorWeijia Wang <381152119@qq.com>2017-07-22 19:23:04 +0800
committerTobias Nießen <tniessen@tnie.de>2017-08-01 14:08:12 +0200
commitbdfbce924159ece4b32ee7f774a263987e719972 (patch)
tree2134a4937c1d751de771abe92d00c8cf47fc2307 /test/parallel/test-http-invalid-path-chars.js
parent8db39971b768118ce2c0c34d88788daea14f52c9 (diff)
downloadandroid-node-v8-bdfbce924159ece4b32ee7f774a263987e719972.tar.gz
android-node-v8-bdfbce924159ece4b32ee7f774a263987e719972.tar.bz2
android-node-v8-bdfbce924159ece4b32ee7f774a263987e719972.zip
http_client, errors: migrate to internal/errors
PR-URL: https://github.com/nodejs/node/pull/14423 Refs: https://github.com/nodejs/node/issues/11273 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'test/parallel/test-http-invalid-path-chars.js')
-rw-r--r--test/parallel/test-http-invalid-path-chars.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/parallel/test-http-invalid-path-chars.js b/test/parallel/test-http-invalid-path-chars.js
index 6aedf430a1..c1d0baa62c 100644
--- a/test/parallel/test-http-invalid-path-chars.js
+++ b/test/parallel/test-http-invalid-path-chars.js
@@ -1,9 +1,14 @@
'use strict';
-require('../common');
+
+const common = require('../common');
const assert = require('assert');
const http = require('http');
-const expectedError = /^TypeError: Request path contains unescaped characters$/;
+const expectedError = common.expectsError({
+ code: 'ERR_UNESCAPED_CHARACTERS',
+ type: TypeError,
+ message: 'Request path contains unescaped characters'
+}, 1320);
const theExperimentallyDeterminedNumber = 39;
function fail(path) {