From 5b4d779182743a3219a8bc6352943cef38bd99ef Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 17:36:45 +0100 Subject: [PATCH] Update BuyableProduct.php --- tests/Fixtures/BuyableProduct.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Fixtures/BuyableProduct.php b/tests/Fixtures/BuyableProduct.php index 435219b..fc317e5 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -55,7 +55,7 @@ class BuyableProduct extends Model implements Buyable */ public function getBuyablePrice(): Money { - return new Money($this->price); + return new Money($this->price, $this->currency); } /**