From b70825866cfb3fb190e3d23b154b2cbd7175d35e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20=C5=BBuraw?= <9116238+krzysztofzuraw@users.noreply.github.com> Date: Wed, 15 May 2024 09:02:09 +0200 Subject: [PATCH] fix shipping amounts --- .../tests/entire_voucher_product_without_tax_class.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/avatax/e2e/tests/entire_voucher_product_without_tax_class.spec.ts b/apps/avatax/e2e/tests/entire_voucher_product_without_tax_class.spec.ts index 9c6a97379..49e22c2da 100644 --- a/apps/avatax/e2e/tests/entire_voucher_product_without_tax_class.spec.ts +++ b/apps/avatax/e2e/tests/entire_voucher_product_without_tax_class.spec.ts @@ -20,9 +20,9 @@ describe("App should calculate taxes for checkout with entire voucher applied [p const TOTAL_TAX_PRICE_BEFORE_SHIPPING = 1.33; const TOTAL_GROSS_PRICE_BEFORE_SHIPPING = 16.33; - const SHIPPING_NET_PRICE = 69.31; + const SHIPPING_NET_PRICE = 67.46; const SHIPPING_TAX_PRICE = 6.14; - const SHIPPING_GROSS_PRICE = 75.45; + const SHIPPING_GROSS_PRICE = 73.45; const TOTAL_NET_PRICE_AFTER_SHIPPING = 84.31; const TOTAL_TAX_PRICE_AFTER_SHIPPING = 7.48; @@ -31,7 +31,7 @@ describe("App should calculate taxes for checkout with entire voucher applied [p const VOUCHER_AMOUNT = 2.25; const SHIPPING_NET_PRICE_AFTER_VOUCHER = 67.46; - const SHIPPING_TAX_PRICE_AFTER_VOUCHER = 5.99; + const SHIPPING_TAX_PRICE_AFTER_VOUCHER = 6.14; const SHIPPING_GROSS_PRICE_AFTER_VOUCHER = 73.45; const PRODUCT_NET_PRICE_AFTER_VOUCHER = 15; const PRODUCT_TAX_PRICE_AFTER_VOUCHER = 1.34;