From db546d937084b03c6dc74e6f6c21d455495a443f Mon Sep 17 00:00:00 2001 From: ShridharGoel <35566748+ShridharGoel@users.noreply.github.com> Date: Sat, 6 Jul 2024 14:52:53 +0530 Subject: [PATCH] Update --- tests/unit/CurrencyUtilsTest.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/unit/CurrencyUtilsTest.ts b/tests/unit/CurrencyUtilsTest.ts index b4d09104a74c..5322faff763f 100644 --- a/tests/unit/CurrencyUtilsTest.ts +++ b/tests/unit/CurrencyUtilsTest.ts @@ -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'], @@ -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'],