Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ShridharGoel committed Jul 6, 2024
1 parent 6ea6286 commit db546d9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/unit/CurrencyUtilsTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ describe('CurrencyUtils', () => {
[25, 0.25, 'USD'],
[2500, 25, 'USD'],
[2500.5, 25, 'USD'], // The backend should never send a decimal .5 value
// VND uses 0 decimals.
// https://github.com/Expensify/App/pull/43948
[2500, 25, 'VND'],
[2550, 26, 'VND'],
[25, 0, 'VND'],
Expand All @@ -133,8 +131,6 @@ describe('CurrencyUtils', () => {
[null, '', 'USD'],
[undefined, '', 'USD'],
[0, '0.00', 'USD'],
// VND uses 0 decimals.
// https://github.com/Expensify/App/pull/43948
[2500, '25', 'VND'],
[2550, '26', 'VND'],
[25, '0', 'VND'],
Expand Down

0 comments on commit db546d9

Please sign in to comment.