From 747ee70edbb4411811d5a2669686dd584398b66d Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 21:34:00 +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 ae7cedc..147b421 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' => '10.00', 'currency' => 'USD', 'weight' => 0, ];