diff --git a/client/tokenized-payment-request/transformers/__tests__/wc-to-stripe.test.js b/client/tokenized-payment-request/transformers/__tests__/wc-to-stripe.test.js index f777488d311..45ad34a1979 100644 --- a/client/tokenized-payment-request/transformers/__tests__/wc-to-stripe.test.js +++ b/client/tokenized-payment-request/transformers/__tests__/wc-to-stripe.test.js @@ -37,7 +37,6 @@ describe( 'wc-to-stripe transformers', () => { it( 'transforms the price if the currency is a zero decimal currency (e.g.: Yen)', () => { global.wcpayPaymentRequestParams.checkout.currency_decimals = 0; // with zero decimals, `18` would mean `18`. - // But since Stripe expects the price to be in the minimum currency amount, the return value should be `18` expect( transformPrice( 18, { currency_minor_unit: 0 } ) ).toBe( 18 );