This commit is contained in:
Patrick Henninger
2020-02-18 14:55:20 +01:00
parent 2078f119ec
commit 008b6f42de

View File

@@ -1340,7 +1340,7 @@ class CartTest extends TestCase
$cart->setGlobalTax(22);
// check net price
$this->assertEquals(81.97, round($cartItem->priceNet,2));
$this->assertEquals(81.97, round($cartItem->priceNet, 2));
}
/** @test */
@@ -1366,7 +1366,6 @@ class CartTest extends TestCase
$this->assertEquals($cart->totalFloat(), $cart->subtotalFloat() + $cart->taxFloat());
}
/**
* Get an instance of the cart.
*