Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
chuck-sys committed Feb 3, 2020
1 parent a632c2a commit 593f704
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/choices/Choices.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ it("renders choices correctly", () => {
const {getByText} = render(
<Choices
choices={choices}
makeChoice={(c) => {c}}
/>);
makeChoice={(c) => {c;}}
/>
);
for (const c of choices) {
expect(getByText(c.answer())).toBeInTheDocument();
}
Expand Down

0 comments on commit 593f704

Please sign in to comment.