Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 59a3093

Browse files
committed
Removing some complication in the test
1 parent db6b81c commit 59a3093

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/MailTrackingTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public function it_records_emails_in_collection()
136136
*/
137137
public function it_checks_email_bcc_address()
138138
{
139-
$message = $this->makeMessage('subject', 'body');
139+
$message = $this->makeMessage();
140140
$message->setBcc('bcc@domain.tld');
141141
$this->mail_tracking->recordMail($message);
142142

@@ -149,7 +149,7 @@ public function it_checks_email_bcc_address()
149149
*/
150150
public function it_checks_email_cc_address()
151151
{
152-
$message = $this->makeMessage('subject', 'body');
152+
$message = $this->makeMessage();
153153
$message->setCc('cc@domain.tld');
154154
$this->mail_tracking->recordMail($message);
155155

0 commit comments

Comments
 (0)