core/modules/system/src/Tests/Cache/SmartCacheIntegrationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/src/Tests/Cache/SmartCacheIntegrationTest.php b/core/modules/system/src/Tests/Cache/SmartCacheIntegrationTest.php index efc6df1..34c28f0 100644 --- a/core/modules/system/src/Tests/Cache/SmartCacheIntegrationTest.php +++ b/core/modules/system/src/Tests/Cache/SmartCacheIntegrationTest.php @@ -122,7 +122,7 @@ protected function assertSmartCache(Url $url, array $expected_cache_contexts, ar $cid_parts = array_merge($cid_parts, $cid_parts_for_cache_contexts); $cid = implode(':', $cid_parts); $cache_item = \Drupal::cache('smart_cache_html')->get($cid); - $this->assertEqual(['#markup', '#attached', '#cache', 'page'], array_keys($cache_item->data)); + $this->assertEqual(['#markup', '#attached', '#cache'], array_keys($cache_item->data)); } }