Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2021-05-31 17:54:40 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2021-06-21 18:08:07 +0300
commit5e9175f1487a306c2b44d491a2192ed301d09dbc (patch)
treef3bdd39806922e214e4899ff4ca48c8fb85ef424 /test
parent1afff98805e17f2077ac6e8700b716573381b52f (diff)
test: fix name of variable in inspector-cli test
PR-URL: https://github.com/nodejs/node/pull/38869 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/inspector-cli/cjs/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixtures/inspector-cli/cjs/index.js b/test/fixtures/inspector-cli/cjs/index.js
index 0ace6d9b785..c9bf53d1b4e 100644
--- a/test/fixtures/inspector-cli/cjs/index.js
+++ b/test/fixtures/inspector-cli/cjs/index.js
@@ -1,5 +1,5 @@
-const fourty = 40;
+const forty = 40;
const { add } = require('./other');
-const sum = add(fourty, 2);
+const sum = add(forty, 2);
module.exports = sum;