summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-spawnsync-validation-errors.js
diff options
context:
space:
mode:
authorWeijia Wang <381152119@qq.com>2017-12-13 20:48:43 +0800
committerWeijia Wang <381152119@qq.com>2017-12-24 14:09:29 +0800
commitd022cb1bdd20f10483cbe988a950548df2dfd48c (patch)
treee10d1a2c2d4957ef123a8aaadb9727bf674c00ae /test/parallel/test-child-process-spawnsync-validation-errors.js
parent4d74b52979c60391bc369be69a34463eba61f383 (diff)
downloadandroid-node-v8-d022cb1bdd20f10483cbe988a950548df2dfd48c.tar.gz
android-node-v8-d022cb1bdd20f10483cbe988a950548df2dfd48c.tar.bz2
android-node-v8-d022cb1bdd20f10483cbe988a950548df2dfd48c.zip
lib: combine similar error codes
There two similar error codes in lib: "ERR_VALUE_OUT_OF_RANGE" and "ERR_OUT_OF_RANGE". This change is to reduce them into "ERR_VALUE_OUT_OF_RANGE" Fixes: https://github.com/nodejs/node/issues/17603 PR-URL: https://github.com/nodejs/node/pull/17648 Fixes: https://github.com/nodejs/node/issues/17603 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'test/parallel/test-child-process-spawnsync-validation-errors.js')
-rw-r--r--test/parallel/test-child-process-spawnsync-validation-errors.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-spawnsync-validation-errors.js b/test/parallel/test-child-process-spawnsync-validation-errors.js
index 7e38b549dc..433e0fce16 100644
--- a/test/parallel/test-child-process-spawnsync-validation-errors.js
+++ b/test/parallel/test-child-process-spawnsync-validation-errors.js
@@ -15,7 +15,7 @@ if (common.isWindows) {
}
const invalidRangeError =
- common.expectsError({ code: 'ERR_VALUE_OUT_OF_RANGE', type: RangeError }, 20);
+ common.expectsError({ code: 'ERR_OUT_OF_RANGE', type: RangeError }, 20);
function pass(option, value) {
// Run the command with the specified option. Since it's not a real command,