Skip to content

Commit

Permalink
Update CreateEngagementBatchTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Jul 31, 2024
1 parent a61ee16 commit 0b83447
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
'user' => User::factory()->create(),
'records' => Contact::factory()->count(1)->create(),
'subject' => 'Test Subject',
'body' => ['Test Body'],
'body' => ['type' => 'doc', 'content' => [['type' => 'paragraph', 'content' => [['type' => 'text', 'text' => 'Test Body']]]]],
'deliveryMethod' => EngagementDeliveryMethod::Email->value,
]));

Expand All @@ -75,7 +75,7 @@
'user' => User::factory()->create(),
'records' => $contacts,
'subject' => 'Test Subject',
'body' => ['Test Body'],
'body' => ['type' => 'doc', 'content' => [['type' => 'paragraph', 'content' => [['type' => 'text', 'text' => 'Test Body']]]]],
'deliveryMethod' => EngagementDeliveryMethod::Email->value,
]));

Expand All @@ -92,7 +92,7 @@
'user' => User::factory()->create(),
'records' => Contact::factory()->count(4)->create(),
'subject' => 'Test Subject',
'body' => ['Test Body'],
'body' => ['type' => 'doc', 'content' => [['type' => 'paragraph', 'content' => [['type' => 'text', 'text' => 'Test Body']]]]],
'deliveryMethod' => EngagementDeliveryMethod::Email->value,
]));

Expand All @@ -107,7 +107,7 @@
'user' => User::factory()->create(),
'records' => Contact::factory()->count(1)->create(),
'subject' => 'Test Subject',
'body' => ['Test Body'],
'body' => ['type' => 'doc', 'content' => [['type' => 'paragraph', 'content' => [['type' => 'text', 'text' => 'Test Body']]]]],
'deliveryMethod' => EngagementDeliveryMethod::Email->value,
]));

Expand All @@ -123,7 +123,7 @@
'user' => User::factory()->create(),
'records' => Contact::factory()->count(5)->create(),
'subject' => 'Test Subject',
'body' => ['Test Body'],
'body' => ['type' => 'doc', 'content' => [['type' => 'paragraph', 'content' => [['type' => 'text', 'text' => 'Test Body']]]]],
'deliveryMethod' => EngagementDeliveryMethod::Email->value,
]));

Expand All @@ -147,7 +147,7 @@
'user' => $user,
'records' => Contact::factory()->count(1)->create(),
'subject' => 'Test Subject',
'body' => ['Test Body'],
'body' => ['type' => 'doc', 'content' => [['type' => 'paragraph', 'content' => [['type' => 'text', 'text' => 'Test Body']]]]],
'deliveryMethod' => EngagementDeliveryMethod::Email->value,
]));

Expand Down

0 comments on commit 0b83447

Please sign in to comment.