Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Call mailer getter in seeInSubjects
Browse files Browse the repository at this point in the history
  • Loading branch information
alepeino committed Apr 12, 2017
1 parent b9ea841 commit 5c5e08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Testing/InteractsWithMail.php
Expand Up @@ -132,7 +132,7 @@ protected function seeInSubjects($subjects)
$subjects = (array) $subjects;

foreach ($subjects as $subject) {
$this->assertTrue(in_array($subject, $this->mailer->subjects()->all()));
$this->assertTrue(in_array($subject, $this->getMailer()->subjects()->all()));
}
}

Expand Down

0 comments on commit 5c5e08c

Please sign in to comment.