Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Serializer] Fix call to expectExceptionMessage()
Signed-off-by: Alexander M. Turek <[email protected]>
  • Loading branch information
derrabus committed Jun 10, 2021
commit 29621cd83b7f19d4aefc53f37becb67dab0f39b1
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public function testNormalizeWithNormalizationFormatPassedInConstructor()
public function testNormalizeWithNormalizationFormatNotValid()
{
$this->expectException(LogicException::class);
$this->expectDeprecationMessage('The "ccc" format is not valid.');
$this->expectExceptionMessage('The "ccc" format is not valid.');

$this->normalizer->normalize(new Ulid(), null, [
'uid_normalization_format' => 'ccc',
Expand Down