fix conflicts
This commit is contained in:
commit
437b3cd865
1 changed files with 2 additions and 0 deletions
|
@ -31,12 +31,14 @@ class ExpiringAlertsNotificationTest extends TestCase
|
||||||
'archived' => 0,
|
'archived' => 0,
|
||||||
'deleted_at' => null,
|
'deleted_at' => null,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$expiredAsset = Asset::factory()->create([
|
$expiredAsset = Asset::factory()->create([
|
||||||
'purchase_date' => now()->subDays(370)->format('Y-m-d'),
|
'purchase_date' => now()->subDays(370)->format('Y-m-d'),
|
||||||
'warranty_months' => 12,
|
'warranty_months' => 12,
|
||||||
'archived' => 0,
|
'archived' => 0,
|
||||||
'deleted_at' => null,
|
'deleted_at' => null,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$notExpiringAsset = Asset::factory()->create([
|
$notExpiringAsset = Asset::factory()->create([
|
||||||
'purchase_date' => now()->subDays(330)->format('Y-m-d'),
|
'purchase_date' => now()->subDays(330)->format('Y-m-d'),
|
||||||
'warranty_months' => 12,
|
'warranty_months' => 12,
|
||||||
|
|
Loading…
Add table
Reference in a new issue