Skip to content

Commit

Permalink
[Tests] fix broken master.
Browse files Browse the repository at this point in the history
I have no idea why these started breaking; perhaps an eslint upgrade parsed them differently.
  • Loading branch information
ljharb committed Jul 5, 2017
1 parent 9e13ae2 commit 65b746e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lib/rules/jsx-uses-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ruleTester.run('no-unused-vars', ruleNoUnusedVars, {
}, {
code: `
/* eslint jsx-uses-vars: 1 */
class HelloMessage {}
class HelloMessage {};
<HelloMessage />
`
}, {
Expand All @@ -98,7 +98,7 @@ ruleTester.run('no-unused-vars', ruleNoUnusedVars, {
var HelloMessage = <div>Hello</div>;
return HelloMessage;
}
}
};
<HelloMessage />
`
}, {
Expand Down

0 comments on commit 65b746e

Please sign in to comment.