Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Cache / CacheableMetadataTest.php
index 5eecf1cd792107f36b6bafca1ea2ec13504314c6..f3824e8d5009b4d8ce40a3fb44e6ed277d244da0 100644 (file)
@@ -87,12 +87,12 @@ class CacheableMetadataTest extends UnitTestCase {
   public function testAddCacheTags() {
     $metadata = new CacheableMetadata();
     $add_expected = [
-      [ [], [] ],
-      [ ['foo:bar'], ['foo:bar'] ],
-      [ ['foo:baz'], ['foo:bar', 'foo:baz'] ],
-      [ ['axx:first', 'foo:baz'], ['axx:first', 'foo:bar', 'foo:baz'] ],
-      [ [], ['axx:first', 'foo:bar', 'foo:baz'] ],
-      [ ['axx:first'], ['axx:first', 'foo:bar', 'foo:baz'] ],
+      [[], []],
+      [['foo:bar'], ['foo:bar']],
+      [['foo:baz'], ['foo:bar', 'foo:baz']],
+      [['axx:first', 'foo:baz'], ['axx:first', 'foo:bar', 'foo:baz']],
+      [[], ['axx:first', 'foo:bar', 'foo:baz']],
+      [['axx:first'], ['axx:first', 'foo:bar', 'foo:baz']],
     ];
 
     foreach ($add_expected as $data) {