From 6f1862eab33a5908e53eaee17b5488850ae41be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 31 May 2021 16:54:40 +0200 Subject: [PATCH] test: fix name of variable in inspector-cli test PR-URL: https://github.com/nodejs/node/pull/38869 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott Reviewed-By: Darshan Sen Reviewed-By: James M Snell --- test/fixtures/inspector-cli/cjs/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fixtures/inspector-cli/cjs/index.js b/test/fixtures/inspector-cli/cjs/index.js index 0ace6d9b78591c..c9bf53d1b4e61b 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;