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, ]; }