Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Entity / EntityUnitTest.php
index ad9e49c61675d236ace39748177cb80184cb16b6..31edac21741aa2972c9213b022637ba7bb0a919a 100644 (file)
@@ -392,13 +392,16 @@ class EntityUnitTest extends UnitTestCase {
     $this->cacheTagsInvalidator->expects($this->at(0))
       ->method('invalidateTags')
       ->with([
-        $this->entityTypeId . '_list', // List cache tag.
+        // List cache tag.
+        $this->entityTypeId . '_list',
       ]);
     $this->cacheTagsInvalidator->expects($this->at(1))
       ->method('invalidateTags')
       ->with([
-        $this->entityTypeId . ':' . $this->values['id'], // Own cache tag.
-        $this->entityTypeId . '_list', // List cache tag.
+        // Own cache tag.
+        $this->entityTypeId . ':' . $this->values['id'],
+        // List cache tag.
+        $this->entityTypeId . '_list',
       ]);
 
     // This method is internal, so check for errors on calling it only.