Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akulsr0 committed Jun 21, 2024
1 parent 1625b1a commit 58c9063
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/lib/rules/jsx-handler-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ ruleTester.run('jsx-handler-names', rule, {
code: `
function App() {
return (
<>
<div>
<MyLibInput customPropNameBar={handleSomething} />;
<MyLibCheckbox customPropNameBar={handleSomething} />;
<MyLibButtom customPropNameBar={handleSomething} />;
</>
</div>
)
}
`,
Expand Down Expand Up @@ -391,11 +391,11 @@ ruleTester.run('jsx-handler-names', rule, {
code: `
function App() {
return (
<>
<div>
<MyLibInput customPropNameBar={handleInput} />;
<MyLibCheckbox customPropNameBar={handleCheckbox} />;
<MyLibButtom customPropNameBar={handleButton} />;
</>
</div>
)
}
`,
Expand Down

0 comments on commit 58c9063

Please sign in to comment.