diff --git a/core/modules/system/src/Tests/Cache/PageCacheTagsIntegrationTest.php b/core/modules/system/src/Tests/Cache/PageCacheTagsIntegrationTest.php index 7efb671..422a4a9 100644 --- a/core/modules/system/src/Tests/Cache/PageCacheTagsIntegrationTest.php +++ b/core/modules/system/src/Tests/Cache/PageCacheTagsIntegrationTest.php @@ -49,6 +49,7 @@ function testPageCacheTags() { )); $author_2 = $this->drupalCreateUser(); $node_2 = $this->drupalCreateNode(array( + 'type' => 'article', 'uid' => $author_2->id(), 'title' => 'Node 2', 'body' => array( @@ -88,7 +89,6 @@ function testPageCacheTags() { 'block_plugin:system_powered_by_block', 'node_view', 'node:' . $node_1->id(), - 'user:' . $author_1->id(), 'filter_format:basic_html', 'menu:account', 'menu:tools', @@ -121,6 +121,8 @@ function testPageCacheTags() { 'node_view', 'node:' . $node_2->id(), 'user:' . $author_2->id(), + 'user_view', + 'comment_list', 'filter_format:full_html', 'menu:account', 'menu:tools',