From a4f1b8cb9f1f0f7c66a09dd59b5d0bc8854181cb Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Feb 2022 17:36:34 +0100 Subject: [PATCH] Update BuyableProduct.php --- tests/Fixtures/BuyableProduct.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/Fixtures/BuyableProduct.php b/tests/Fixtures/BuyableProduct.php index 800ba1a..435219b 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -23,10 +23,11 @@ class BuyableProduct 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, ]; /**