Skip to content

Commit

Permalink
Merge branch '6.1' into 6.2
Browse files Browse the repository at this point in the history
* 6.1:
  [Translation] Fix Crowdin documentation urls
  ignore missing keys when mapping DateTime objects to uninitialized arrays
  fix writes to static $kernel property
  [Notifier] Fix test logic
  [Validator] Hint that `egulias/email-validator` needs to be installed for strict mode as default config
  • Loading branch information
xabbuh committed Aug 8, 2022
2 parents b8445be + cfe0c58 commit cba3c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/FakeSmsEmailTransportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ public function testSendWithCustomTransport()
$this->assertSame(sprintf('New SMS on phone number: %s', $phone), $sentEmail->getSubject());
$this->assertSame($subject, $sentEmail->getTextBody());
$this->assertTrue($sentEmail->getHeaders()->has('X-Transport'));
$this->assertSame($transportName, $sentEmail->getHeaders()->get('X-Transport')->getBodyAsString());
$this->assertSame($transportName, $sentEmail->getHeaders()->get('X-Transport')->getBody());
}
}

0 comments on commit cba3c25

Please sign in to comment.