Skip to content

Commit 9738a78

Browse files
committed
wip
1 parent a792f62 commit 9738a78

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

packages/mailer/tests/EmailBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function test_builder(): void
3434
$this->assertSame('Gotcha!', $email->content);
3535
$this->assertCount(1, $email->attachments);
3636

37-
$attachment = $email->content->attachments[0];
37+
$attachment = $email->attachments[0];
3838

3939
$this->assertInstanceOf(Attachment::class, $attachment);
4040
$this->assertSame('attachment.txt', $attachment->name);

tests/Integration/Mailer/SentEmailTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ public function test_sent_email_assertions(): void
3131
$sent->assertSee('Hello Jon');
3232
$sent->assertNotSee('this is not in the email');
3333

34-
$sent->assertSeeInHtml('Hello Jon in HTML');
35-
$sent->assertNotSeeInHtml('this is not in the HTML');
36-
3734
$sent->assertSeeInText('Hello Jon in Text');
3835
$sent->assertNotSeeInText('this is not in the Text');
3936

0 commit comments

Comments
 (0)