@@ -218,7 +218,7 @@ public function testDenormalizeWithUuidWithIncorrectType() {
$this->setExpectedException(UnexpectedValueException::class,'The field "field_reference" property "target_type" must be set to "test_type" or omitted.');
@@ -238,7 +238,7 @@ public function testDenormalizeWithTypeWithIncorrectUuid() {
$this->setExpectedException(InvalidArgumentException::class,'No "test_type" entity found with UUID "unique-but-none-non-existent" for field "field_reference"');
$data=[
'target_id'=>['value'=>'test'],
'target_id'=>'test',
'target_type'=>'test_type',
'target_uuid'=>'unique-but-none-non-existent',
];
...
...
@@ -261,7 +261,7 @@ public function testDenormalizeWithEmtpyUuid() {
$this->setExpectedException(InvalidArgumentException::class,'If provided "target_uuid" cannot be empty for field "test_type".');
$data=[
'target_id'=>['value'=>'test'],
'target_id'=>'test',
'target_type'=>'test_type',
'target_uuid'=>'',
];
...
...
@@ -278,7 +278,7 @@ public function testDenormalizeWithEmtpyUuid() {