We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ff336 commit db42334Copy full SHA for db42334
tests/Integration/Mailer/AttachmentTest.php
@@ -36,7 +36,7 @@ public function test_from_filesystem(): void
36
37
$this->assertSame('attachment.txt', $attachment->name);
38
$this->assertSame('text/plain', $attachment->contentType);
39
- $this->assertSame("hello\n", ($attachment->resolve)());
+ $this->assertStringContainsStringIgnoringLineEndings("hello\n", ($attachment->resolve)());
40
}
41
42
public function test_from_path_throws_when_file_does_not_exist(): void
0 commit comments