Skip to content

Commit

Permalink
fix: Failing maybePlural test
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan committed Dec 17, 2024
1 parent d571ab8 commit c3ef09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/__tests__/formatters.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('formatters', () => {
it('should add an "s" for more than 1', () => {
expect(maybePlural(2)).toEqual('s')
expect(maybePlural(10)).toEqual('s')
expect(maybePlural(0)).toEqual('')
expect(maybePlural(0)).toEqual('s')
expect(maybePlural(1)).toEqual('')
})

Expand Down

0 comments on commit c3ef09f

Please sign in to comment.