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

Commit bb21fc3

Browse files
committed
Replace format for NitpickCI
This reverts commit 43c2cfb.
1 parent 161a46f commit bb21fc3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/MailTracking.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ protected function seeEmailDoesNotContain($excerpt, Swift_Message $message = nul
178178
{
179179
$this->assertNotContains($excerpt, $this->getEmail($message)
180180
->getBody(),
181-
"The last email sent contained the provided text in its body.");
181+
"The last email sent contained the provided text in its body.");
182182

183183
return $this;
184184
}
@@ -248,7 +248,7 @@ protected function seeEmailReplyTo($reply_to, Swift_Message $message = null)
248248
{
249249
$this->assertArrayHasKey($reply_to, (array)$this->getEmail($message)
250250
->getReplyTo(),
251-
"The last email sent was not set to reply to $reply_to.");
251+
"The last email sent was not set to reply to $reply_to.");
252252

253253
return $this;
254254
}
@@ -308,7 +308,7 @@ protected function seeEmailSubjectContains($excerpt, Swift_Message $message = nu
308308
{
309309
$this->assertContains($excerpt, $this->getEmail($message)
310310
->getSubject(),
311-
"The last email sent did not contain the provided subject.");
311+
"The last email sent did not contain the provided subject.");
312312

313313
return $this;
314314
}
@@ -325,7 +325,7 @@ protected function seeEmailSubjectDoesNotContain($excerpt, Swift_Message $messag
325325
{
326326
$this->assertNotContains($excerpt, $this->getEmail($message)
327327
->getSubject(),
328-
"The last email sent contained the provided text in its subject.");
328+
"The last email sent contained the provided text in its subject.");
329329

330330
return $this;
331331
}
@@ -342,7 +342,7 @@ protected function seeEmailSubjectEquals($subject, Swift_Message $message = null
342342
{
343343
$this->assertEquals($subject, $this->getEmail($message)
344344
->getSubject(),
345-
"The last email sent did not contain a subject of $subject.");
345+
"The last email sent did not contain a subject of $subject.");
346346

347347
return $this;
348348
}

0 commit comments

Comments
 (0)