From 0cd1ebff6a24f0d61746d4a41ab506a71ba3ffc8 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 21:38:06 +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 147b421..32dc098 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -28,7 +28,7 @@ class BuyableProduct extends Model implements Buyable protected $attributes = [ 'id' => 1, 'name' => 'Item name', - 'price' => '10.00', + 'price' => 1000, 'currency' => 'USD', 'weight' => 0, ];