Skip to content

Commit

Permalink
Update numbers test value which should get rounded up
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchung committed Sep 19, 2024
1 parent eba24b9 commit 12d5ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__swaps__/utils/__tests__/numbers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const testCases = [
{ value: 1234.56, currency: supportedCurrencies.NZD, expected: 'NZ$1,234.56' },
{ value: 1234.56, currency: supportedCurrencies.GBP, expected: '£1,234.56' },
{ value: 1234.56, currency: supportedCurrencies.CNY, expected: '¥1,234.56' },
{ value: 1234.56, currency: supportedCurrencies.JPY, expected: '¥1,234' },
{ value: 1234.56, currency: supportedCurrencies.JPY, expected: '¥1,235' },
{ value: 1234.56, currency: supportedCurrencies.INR, expected: '₹1,234.56' },
{ value: 1234.56, currency: supportedCurrencies.TRY, expected: '₺1,234.56' },
{ value: 1234.56, currency: supportedCurrencies.ZAR, expected: 'R1,234.56' },
Expand Down

0 comments on commit 12d5ee0

Please sign in to comment.