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 68b3d75 commit c1b30e6Copy full SHA for c1b30e6
tests/MailableReaderTest.php
@@ -106,7 +106,7 @@ public function it_extracts_the_from_address_and_or_name()
106
107
$this->assertTrue((bool) $email->from);
108
$this->assertEquals('marick@dolphiq.nl', $email->from['address']);
109
- $this->assertEquals('Example', $email->from['name']);
+ $this->assertEquals('Laravel', $email->from['name']);
110
111
$email = Email::compose()->mailable(
112
($this->mailable())
tests/TestCase.php
@@ -86,6 +86,8 @@ protected function getEnvironmentSetUp($app)
86
]);
87
88
$app['config']->set('mail.driver', 'log');
89
+
90
+ $app['config']->set('mail.from.name', 'Laravel');
91
}
92
93
public function createEmail($overwrite = [])
0 commit comments