tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php b/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php index 4f494cf..6d1afc9 100644 --- a/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php +++ b/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php @@ -264,7 +264,7 @@ class JsonApiDocumentTopLevelNormalizerTest extends JsonapiKernelTestBase { // Make sure that the cache tags for the includes and the requested entities // are bubbling as expected. $this->assertSame( - ['file:1', 'node:1', 'taxonomy_term:1', 'taxonomy_term:2', 'user:1'], + ['file:1', 'node:1', 'taxonomy_term:1', 'taxonomy_term:2'], $response->getCacheableMetadata()->getCacheTags() ); $this->assertSame( @@ -362,7 +362,7 @@ class JsonApiDocumentTopLevelNormalizerTest extends JsonapiKernelTestBase { // Make sure that the cache tags for the includes and the requested entities // are bubbling as expected. $this->assertSame( - ['node:1', 'taxonomy_term:1', 'taxonomy_term:2', 'user:1'], + ['node:1', 'taxonomy_term:1', 'taxonomy_term:2'], $response->getCacheableMetadata()->getCacheTags() ); }