Skip to content

Commit 065ad21

Browse files
committed
Fix quotes in exception messages
1 parent e71b91d commit 065ad21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Normalizer/Features/ConstructorArgumentsTestTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function testConstructorWithMissingData()
5555
$normalizer = $this->getDenormalizerForConstructArguments();
5656

5757
$this->expectException(MissingConstructorArgumentsException::class);
58-
$this->expectExceptionMessage('Cannot create an instance of '.ConstructorArgumentsObject::class.' from serialized data because its constructor requires parameter "bar" to be present.');
58+
$this->expectExceptionMessage('Cannot create an instance of "'.ConstructorArgumentsObject::class.'" from serialized data because its constructor requires parameter "bar" to be present.');
5959
$normalizer->denormalize($data, ConstructorArgumentsObject::class);
6060
}
6161
}

0 commit comments

Comments
 (0)