diff --git a/__tests__/formatting.test.ts b/__tests__/formatting.test.ts index 7c4bf84..a2b2bbc 100644 --- a/__tests__/formatting.test.ts +++ b/__tests__/formatting.test.ts @@ -34,7 +34,7 @@ describe('formatPrice', () => { }); test('rounds USD up to nearest cent', () => { - expect(formatPrice(3, 7.33, 35)).toBe('3.21 keys (US$5.62)'); // (3*35 +7.33)*0.05 = 5.6165 → 5.62 + expect(formatPrice(3, 7.33, 35)).toBe('3.21 keys (US$5.62)'); // (3 * 35 + 7.33) * 0.05 = 5.6165 → 5.62 }); test('handles different locale formatting', () => {