From ed7269f40d2eb1772110ecf97aaa699330bcad07 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 21:38:17 +0100 Subject: [PATCH] Update BuyableProductTrait.php --- tests/Fixtures/BuyableProductTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Fixtures/BuyableProductTrait.php b/tests/Fixtures/BuyableProductTrait.php index 9ac5bdd..17a9811 100644 --- a/tests/Fixtures/BuyableProductTrait.php +++ b/tests/Fixtures/BuyableProductTrait.php @@ -27,7 +27,7 @@ class BuyableProductTrait extends Model implements Buyable protected $attributes = [ 'id' => 1, 'name' => 'Item name', - 'price' => '10.00', + 'price' => 1000, 'currency' => 'USD', 'weight' => 0, ];