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: nodejs#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 nodejs-github-bot committed Jun 16, 2021
1 parent 5b5a9eb commit e7d5f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixtures/inspector-cli/cjs/index.js
Original file line number Diff line number Diff line change
@@ -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 e7d5f0a

Please sign in to comment.