Skip to content

Commit

Permalink
fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
arukompas committed Nov 19, 2023
1 parent 95d656a commit c49b05e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/LaravelLogs/LaravelLogsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Subject: This is an email with common headers
Date: Thu, 24 Aug 2023 21:15:01 PST
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="----=_Part_1_1234567890"
Content-Type: multipart/alternative; boundary="----=_Part_1_1234567890"
------=_Part_1_1234567890
Content-Type: text/plain; charset="utf-8"
Expand Down Expand Up @@ -52,7 +52,7 @@
'to' => 'recipient@example.com',
'attachments' => [
[
'content' => 'Example attachment content',
'content' => base64_encode('Example attachment content'),
'content_type' => 'text/plain; charset="utf-8"',
'filename' => 'example.txt',
'size_formatted' => Utils::bytesForHumans(strlen('Example attachment content')),
Expand Down

0 comments on commit c49b05e

Please sign in to comment.