Update CartTest.php

This commit is contained in:
Patrick
2022-02-05 20:53:34 +01:00
committed by GitHub
parent c61610d22d
commit b5e58d0d88

View File

@@ -1394,7 +1394,7 @@ class CartTest extends TestCase
$cart->setGlobalTax(22);
// check net price
$this->assertEquals(81.97, round($cartItem->priceNet, 2));
$this->assertEquals(new Money(81.97, new Currency('USD')), $cartItem->priceNet);
}
/** @test */