Skip to content

Commit

Permalink
test(eslint-plugin): [no-unused-vars] update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
armano2 committed Jul 10, 2022
1 parent cb31168 commit 15d1dde
Showing 1 changed file with 7 additions and 7 deletions.
Expand Up @@ -2628,8 +2628,8 @@ var a = function () {
errors: [
{
...assignedError('a'),
line: 3,
column: 3,
line: 2,
column: 5,
},
],
},
Expand All @@ -2644,7 +2644,7 @@ var a = function () {
errors: [
{
...assignedError('a'),
line: 4,
line: 2,
column: 5,
},
],
Expand All @@ -2659,8 +2659,8 @@ const a = () => {
errors: [
{
...assignedError('a'),
line: 3,
column: 3,
line: 2,
column: 7,
},
],
},
Expand All @@ -2674,8 +2674,8 @@ const a = () => () => {
errors: [
{
...assignedError('a'),
line: 3,
column: 3,
line: 2,
column: 7,
},
],
},
Expand Down

0 comments on commit 15d1dde

Please sign in to comment.