tests/src/Unit/Normalizer/ConfigEntityNormalizerTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/src/Unit/Normalizer/ConfigEntityNormalizerTest.php b/tests/src/Unit/Normalizer/ConfigEntityNormalizerTest.php index fb9075a..0725997 100644 --- a/tests/src/Unit/Normalizer/ConfigEntityNormalizerTest.php +++ b/tests/src/Unit/Normalizer/ConfigEntityNormalizerTest.php @@ -6,6 +6,7 @@ use Drupal\Core\Config\Entity\ConfigEntityInterface; use Drupal\Core\Entity\EntityFieldManagerInterface; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Field\FieldTypePluginManagerInterface; +use Drupal\Core\Render\RenderCacheInterface; use Drupal\jsonapi\ResourceType\ResourceType; use Drupal\jsonapi\ResourceType\ResourceTypeRepository; use Drupal\jsonapi\Normalizer\ConfigEntityNormalizer; @@ -54,7 +55,8 @@ class ConfigEntityNormalizerTest extends UnitTestCase { $resource_type_repository->reveal(), $this->prophesize(EntityTypeManagerInterface::class)->reveal(), $this->prophesize(EntityFieldManagerInterface::class)->reveal(), - $this->prophesize(FieldTypePluginManagerInterface::class)->reveal() + $this->prophesize(FieldTypePluginManagerInterface::class)->reveal(), + $this->prophesize(RenderCacheInterface::class)->reveal() ); }