Skip to content

Commit

Permalink
test: fix name of variable in inspector-cli test
Browse files Browse the repository at this point in the history
PR-URL: #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>
  • Loading branch information
tniessen authored and danielleadams committed Jun 21, 2021
1 parent 1afff98 commit 5e9175f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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;

0 comments on commit 5e9175f

Please sign in to comment.