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 137c51b commit a4bd3e3Copy full SHA for a4bd3e3
tests/Integration/Mailer/SentEmailTest.php
@@ -12,7 +12,6 @@
12
use Tempest\Mail\Priority;
13
use Tempest\Mail\Testing\SentTestingEmail;
14
use Tempest\Mail\Testing\TestingAttachment;
15
-use Tempest\Support\Filesystem;
16
use Tests\Tempest\Integration\FrameworkIntegrationTestCase;
17
use Tests\Tempest\Integration\Mailer\Fixtures\SendWelcomeEmail;
18
@@ -122,7 +121,7 @@ public function test_assert_sent_to(): void
122
121
public function test_rendered_html(): void
123
{
124
$sent = $this->sendTestEmail(content: new Content(
125
- html: view('./Fixtures/welcome.view.php', fullName: 'Jon Doe'),
+ html: view(__DIR__ . '/Fixtures/welcome.view.php', fullName: 'Jon Doe'),
126
));
127
128
$sent->assertSeeInHtml('Welcome Jon Doe');
0 commit comments