From a6a0b1f802e5d8b060cb3c6208ea9cc3a7ea9ecf Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 17:37:07 +0100 Subject: [PATCH] Update BuyableProductTrait.php --- tests/Fixtures/BuyableProductTrait.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/Fixtures/BuyableProductTrait.php b/tests/Fixtures/BuyableProductTrait.php index 29e39f3..01dc681 100644 --- a/tests/Fixtures/BuyableProductTrait.php +++ b/tests/Fixtures/BuyableProductTrait.php @@ -24,9 +24,10 @@ class BuyableProductTrait extends Model implements Buyable ]; protected $attributes = [ - 'id' => 1, - 'name' => 'Item name', - 'price' => 10.00, - 'weight' => 0, + 'id' => 1, + 'name' => 'Item name', + 'price' => 10.00, + 'currency' => 'USD', + 'weight' => 0, ]; }