Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 064d66a

Browse files
committed
Fix whitespace
1 parent fd81bd0 commit 064d66a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/MailTracking.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ protected function seeEmailFrom($sender, Swift_Message $message = null)
182182
->getFrom(), "The last email sent was not sent from $sender.");
183183

184184
return $this;
185-
}
185+
}
186186

187187
/**
188188
* Assert that the last email had the given priority level.
@@ -198,7 +198,8 @@ protected function seeEmailPriorityEquals($priority, Swift_Message $message = nu
198198
$actual_priority = $this->getEmail($message)
199199
->getPriority();
200200

201-
$this->assertEquals($priority, $actual_priority, "The last email sent had a priority of $actual_priority but expected $priority.");
201+
$this->assertEquals($priority, $actual_priority,
202+
"The last email sent had a priority of $actual_priority but expected $priority.");
202203

203204
return $this;
204205
}

0 commit comments

Comments
 (0)